metadata: erddap_sst.yml

Published

2025-06-13 06:16 UTC

Code
# dir_extractr = "/share/github/marinebon/extractr"
# dir_extractr = "~/Github/marinebon/extractr" # DEBUG
# devtools::load_all(dir_extractr)
# devtools::install_local(dir_extractr, force = T)
# devtools::install_github("marinebon/extractr", force = T)
librarian::shelf(
  dplyr, DT, fs, glue, here, logger, lubridate, mapview, purrr, RColorBrewer, readr, 
  sf, stringr, terra, tibble, tidyr, units, yaml,
  marinebon/extractr,
  quiet = T)

options(readr.show_col_types = F)
mapviewOptions(
  basemaps       = "Esri.OceanBasemap",
  vector.palette = colorRampPalette(brewer.pal(n=5, name="Spectral")))

if (!exists("params"))
  params <- list(yml = here("meta/erddap_sst.yml")) # DEBUG

1 Polygons

Code
sanctuaries_rds <- here("../climate-dashboard/data/sanctuaries.rds")
buf_pct         <- 0.20 # 20% of area

ply_sanctuaries <- readRDS(sanctuaries_rds)

# buffer polygon and get bounding boxes
ply_sanctuaries <- ply_sanctuaries |>
  mutate(
    area_km2  = st_area(geom) |> 
      set_units("km^2") |> 
      as.numeric() |> 
      round(2),
    buf_km    = (sqrt(area_km2) * buf_pct) |> 
      round(2),
    bbox_geom = map2(geom, area_km2, \(g,a) {
      st_sfc(g, crs = 4326) |> 
        st_buffer(buf_km * 1000) |> 
        st_bbox() |>
        round(2) |> 
        st_as_sfc() }),
    bbox_chr  = map_chr(bbox_geom, \(x) {  # xmin, ymin, xmax and ymax
      st_bbox(x) |> 
        as.numeric() |> 
        paste(collapse = ",") } ) ) |> 
  unnest(bbox_geom)
bb_sanctuaries <- st_set_geometry(ply_sanctuaries, "bbox_geom") |> 
  select(-geom)
ply_sanctuaries <- select(ply_sanctuaries, -bbox_geom)

# show map
mapView(ply_sanctuaries, zcol = "nms") +
  mapView(bb_sanctuaries, zcol = "nms", legend = F)
Code
ply_sanctuaries |>
  st_drop_geometry() |>
  datatable()

2 Dataset

2.1 Metadata

Contents of erddap_sst.yml:

Code
cat(
  "```yaml",
  readLines(params$yml),
  "```",
  sep = "\n")
erddap_url: https://coastwatch.noaa.gov/erddap/griddap/noaacrwsstDaily.html
erddap_variable: analysed_sst

2.2 Information

Code
meta <- read_yaml(params$yml) 
proc_prod <- path_ext_remove(basename(params$yml))

dir_out <- glue("/share/data/noaa-onms/climate-dashboard-app/{proc_prod}")
dir_create(dir_out)

v     <- meta$erddap_variable
(ed   <- ed_info(meta$erddap_url))
<ERDDAP info> noaacrwsstDaily 
 Base URL: https://coastwatch.noaa.gov/erddap 
 Dataset Type: griddap 
 Dimensions (range):  
     time: (1985-01-01T12:00:00Z, 2025-06-11T12:00:00Z) 
     latitude: (-89.975, 89.975) 
     longitude: (-179.975, 179.975) 
 Variables:  
     analysed_sst: 
         Units: degree_C 
     sea_ice_fraction: 
         Units: 1 
Code
times <- ed_dim(ed, "time")

3 Polygon years

Code
d_nms_yr_todo <- ply_sanctuaries |> 
  st_drop_geometry() |> 
  arrange(nms) |> 
  select(nms) |> 
  cross_join(
    tibble(
      year = year(min(times)):year(max(times)))) |> 
  mutate(
    d = map2(nms, year, \(nms, year) { # nms = "CBNMS"; year = 2025
      
      times_yr <- times[year(times) == year]
      tif      <- glue("{dir_out}/{nms}/{year}.tif")
      
      # if missing tif,return all times
      if (!file.exists(tif))
        return(list(
          time_min = min(times_yr),
          time_max = max(times_yr),
          n_times  = length(times_yr)))
      
      # get times from tif
      r <- rast(tif)
      times_tif <- time(r)
      
      # if all times done, return NAs
      if (all(times_yr %in% times_tif))
        return(list(
          n_times  = 0,
          time_min = NA,
          time_max= NA)) 
      
      # otherwise, return time range missing
      i <- !times_yr %in% times_tif
      list(
          n_times  = sum(i),
          time_min = min(times_yr[i]),
          time_max = max(times_yr[i])) 
      }),
    time_min = map_vec(d, pluck, "time_min"),
    time_max = map_vec(d, pluck, "time_max"),
    n_times  = map_int(d, pluck, "n_times") ) |> 
  select(-d) |> 
  filter(n_times > 0) |> 
  rowid_to_column("i") |>
  relocate(i)

d_nms_yr_todo |> 
  group_by(nms) %>%
  {if (nrow(.) > 0)
    summarize(
      .,
      time_min = min(time_min, na.rm = T),
      time_max = max(time_max, na.rm = T),
      n_times  = sum(n_times)) else .} |>
  datatable(
    caption  = "Sanctuaries missing available ERDDAP times.",
    rownames = F,
    options  = list(
      pageLength = 5,
      lengthMenu = c(5, 50, nrow(d_nms_yr_todo))))

4 Extract dataset per polygon year

Using extractr::ed_extract(), .

Code
# rerddap::cache_delete_all()

fxn <- function(i, nms, time_min, time_max, ...){ #  nms = "MNMS"; year = 2010 ; i = 97
  
  err <- tryCatch({
    
    log_info("{sprintf('%03d', i)}: {nms}, {time_min} to {time_max}")
    
    yr <- year(time_min)

    ply <- ply_sanctuaries |>
      filter(nms == !!nms)
    bb <- bb_sanctuaries |>
      filter(nms == !!nms) |> 
      st_bbox()
    
    extractr::ed_extract(
      ed,
      var       = v,
      sf_zones  = ply,
      bbox      = bb,
      mask_tif  = F,
      rast_tif  = glue("{dir_out}/{nms}/{yr}.tif"),
      zonal_fun = "mean",
      zonal_csv = glue("{dir_out}/{nms}/{yr}.csv"),
      dir_nc    = glue("{dir_out}/{nms}/{yr}_nc"),
      keep_nc   = F,
      n_max_vals_per_req = 1e+05,
      time_min  = time_min,
      time_max  = time_max,
      verbose   = T)
    
    return(NA)
  }, error = function(e) {
    
    log_error(conditionMessage(e))
    return(conditionMessage(e))
  })
  
  err
} 

res <- d_nms_yr_todo |> 
  mutate(
    error = pmap_chr(list(i, nms, time_min, time_max), fxn))
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (1997-01-01 to 1997-01-27) ~ 00:01:29 UTC
Fetching request 2 of 14 (1997-01-28 to 1997-02-23) ~ 00:01:30 UTC
Fetching request 3 of 14 (1997-02-24 to 1997-03-22) ~ 00:01:32 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1997_nc/1825f458e2cdda9704edc532bd20bb42.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (1998-01-01 to 1998-01-27) ~ 00:01:40 UTC
Fetching request 2 of 14 (1998-01-28 to 1998-02-23) ~ 00:01:46 UTC
Fetching request 3 of 14 (1998-02-24 to 1998-03-22) ~ 00:01:51 UTC
Fetching request 4 of 14 (1998-03-23 to 1998-04-18) ~ 00:01:57 UTC
Fetching request 5 of 14 (1998-04-19 to 1998-05-15) ~ 00:02:04 UTC
Fetching request 6 of 14 (1998-05-16 to 1998-06-11) ~ 00:02:09 UTC
Fetching request 7 of 14 (1998-06-12 to 1998-07-08) ~ 00:02:13 UTC
Fetching request 8 of 14 (1998-07-09 to 1998-08-04) ~ 00:02:18 UTC
Fetching request 9 of 14 (1998-08-05 to 1998-08-31) ~ 00:02:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/1998_nc/606d6813ee845cf9c151ab9d81acf37a.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (1999-01-01 to 1999-01-27) ~ 00:02:30 UTC
Fetching request 2 of 14 (1999-01-28 to 1999-02-23) ~ 00:02:35 UTC
Fetching request 3 of 14 (1999-02-24 to 1999-03-22) ~ 00:02:41 UTC
Fetching request 4 of 14 (1999-03-23 to 1999-04-18) ~ 00:02:45 UTC
Fetching request 5 of 14 (1999-04-19 to 1999-05-15) ~ 00:02:49 UTC
Fetching request 6 of 14 (1999-05-16 to 1999-06-11) ~ 00:02:53 UTC
Fetching request 7 of 14 (1999-06-12 to 1999-07-08) ~ 00:02:58 UTC
Fetching request 8 of 14 (1999-07-09 to 1999-08-04) ~ 00:03:03 UTC
Fetching request 9 of 14 (1999-08-05 to 1999-08-31) ~ 00:03:06 UTC
Fetching request 10 of 14 (1999-09-01 to 1999-09-27) ~ 00:03:12 UTC
Fetching request 11 of 14 (1999-09-28 to 1999-10-24) ~ 00:03:17 UTC
Fetching request 12 of 14 (1999-10-25 to 1999-11-20) ~ 00:03:22 UTC
Fetching request 13 of 14 (1999-11-21 to 1999-12-17) ~ 00:03:27 UTC
Fetching request 14 of 14 (1999-12-18 to 1999-12-31) ~ 00:03:31 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2000-01-01 to 2000-01-27) ~ 00:03:40 UTC
Fetching request 2 of 14 (2000-01-28 to 2000-02-23) ~ 00:03:40 UTC
Fetching request 3 of 14 (2000-02-24 to 2000-03-21) ~ 00:03:40 UTC
Fetching request 4 of 14 (2000-03-22 to 2000-04-17) ~ 00:03:41 UTC
Fetching request 5 of 14 (2000-04-18 to 2000-05-14) ~ 00:03:41 UTC
Fetching request 6 of 14 (2000-05-15 to 2000-06-10) ~ 00:03:41 UTC
Fetching request 7 of 14 (2000-06-11 to 2000-07-07) ~ 00:03:41 UTC
Fetching request 8 of 14 (2000-07-08 to 2000-08-03) ~ 00:03:41 UTC
Fetching request 9 of 14 (2000-08-04 to 2000-08-30) ~ 00:03:43 UTC
Fetching request 10 of 14 (2000-08-31 to 2000-09-26) ~ 00:03:47 UTC
Fetching request 11 of 14 (2000-09-27 to 2000-10-23) ~ 00:03:51 UTC
Fetching request 12 of 14 (2000-10-24 to 2000-11-19) ~ 00:03:55 UTC
Fetching request 13 of 14 (2000-11-20 to 2000-12-16) ~ 00:04:00 UTC
Fetching request 14 of 14 (2000-12-17 to 2000-12-31) ~ 00:04:06 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2001-01-01 to 2001-01-27) ~ 00:04:17 UTC
Fetching request 2 of 14 (2001-01-28 to 2001-02-23) ~ 00:04:19 UTC
Fetching request 3 of 14 (2001-02-24 to 2001-03-22) ~ 00:04:19 UTC
Fetching request 4 of 14 (2001-03-23 to 2001-04-18) ~ 00:04:19 UTC
Fetching request 5 of 14 (2001-04-19 to 2001-05-15) ~ 00:04:19 UTC
Fetching request 6 of 14 (2001-05-16 to 2001-06-11) ~ 00:04:19 UTC
Fetching request 7 of 14 (2001-06-12 to 2001-07-08) ~ 00:04:22 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2001_nc/74a56780620f1d22fb056e5df595010b.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2002-01-01 to 2002-01-27) ~ 00:04:30 UTC
Fetching request 2 of 14 (2002-01-28 to 2002-02-23) ~ 00:04:35 UTC
Fetching request 3 of 14 (2002-02-24 to 2002-03-22) ~ 00:04:40 UTC
Fetching request 4 of 14 (2002-03-23 to 2002-04-18) ~ 00:04:45 UTC
Fetching request 5 of 14 (2002-04-19 to 2002-05-15) ~ 00:04:49 UTC
Fetching request 6 of 14 (2002-05-16 to 2002-06-11) ~ 00:04:54 UTC
Fetching request 7 of 14 (2002-06-12 to 2002-07-08) ~ 00:04:59 UTC
Fetching request 8 of 14 (2002-07-09 to 2002-08-04) ~ 00:05:05 UTC
Fetching request 9 of 14 (2002-08-05 to 2002-08-31) ~ 00:05:09 UTC
Fetching request 10 of 14 (2002-09-01 to 2002-09-27) ~ 00:05:14 UTC
Fetching request 11 of 14 (2002-09-28 to 2002-10-24) ~ 00:05:19 UTC
Fetching request 12 of 14 (2002-10-25 to 2002-11-20) ~ 00:05:27 UTC
Fetching request 13 of 14 (2002-11-21 to 2002-12-17) ~ 00:05:33 UTC
Fetching request 14 of 14 (2002-12-18 to 2002-12-31) ~ 00:05:38 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2003-01-01 to 2003-01-27) ~ 00:05:46 UTC
Fetching request 2 of 14 (2003-01-28 to 2003-02-23) ~ 00:05:46 UTC
Fetching request 3 of 14 (2003-02-24 to 2003-03-22) ~ 00:05:46 UTC
Fetching request 4 of 14 (2003-03-23 to 2003-04-18) ~ 00:05:47 UTC
Fetching request 5 of 14 (2003-04-19 to 2003-05-15) ~ 00:05:47 UTC
Fetching request 6 of 14 (2003-05-16 to 2003-06-11) ~ 00:05:47 UTC
Fetching request 7 of 14 (2003-06-12 to 2003-07-08) ~ 00:05:48 UTC
Fetching request 8 of 14 (2003-07-09 to 2003-08-04) ~ 00:05:52 UTC
Fetching request 9 of 14 (2003-08-05 to 2003-08-31) ~ 00:05:56 UTC
Fetching request 10 of 14 (2003-09-01 to 2003-09-27) ~ 00:06:00 UTC
Fetching request 11 of 14 (2003-09-28 to 2003-10-24) ~ 00:06:04 UTC
Fetching request 12 of 14 (2003-10-25 to 2003-11-20) ~ 00:06:09 UTC
Fetching request 13 of 14 (2003-11-21 to 2003-12-17) ~ 00:06:13 UTC
Fetching request 14 of 14 (2003-12-18 to 2003-12-31) ~ 00:06:17 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2004-01-01 to 2004-01-27) ~ 00:06:25 UTC
Fetching request 2 of 14 (2004-01-28 to 2004-02-23) ~ 00:06:26 UTC
Fetching request 3 of 14 (2004-02-24 to 2004-03-21) ~ 00:06:26 UTC
Fetching request 4 of 14 (2004-03-22 to 2004-04-17) ~ 00:06:26 UTC
Fetching request 5 of 14 (2004-04-18 to 2004-05-14) ~ 00:06:26 UTC
Fetching request 6 of 14 (2004-05-15 to 2004-06-10) ~ 00:06:27 UTC
Fetching request 7 of 14 (2004-06-11 to 2004-07-07) ~ 00:06:28 UTC
Fetching request 8 of 14 (2004-07-08 to 2004-08-03) ~ 00:06:32 UTC
Fetching request 9 of 14 (2004-08-04 to 2004-08-30) ~ 00:06:36 UTC
Fetching request 10 of 14 (2004-08-31 to 2004-09-26) ~ 00:06:39 UTC
Fetching request 11 of 14 (2004-09-27 to 2004-10-23) ~ 00:06:45 UTC
Fetching request 12 of 14 (2004-10-24 to 2004-11-19) ~ 00:06:49 UTC
Fetching request 13 of 14 (2004-11-20 to 2004-12-16) ~ 00:06:54 UTC
Fetching request 14 of 14 (2004-12-17 to 2004-12-31) ~ 00:06:58 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2005-01-01 to 2005-01-27) ~ 00:07:07 UTC
Fetching request 2 of 14 (2005-01-28 to 2005-02-23) ~ 00:07:08 UTC
Fetching request 3 of 14 (2005-02-24 to 2005-03-22) ~ 00:07:08 UTC
Fetching request 4 of 14 (2005-03-23 to 2005-04-18) ~ 00:07:08 UTC
Fetching request 5 of 14 (2005-04-19 to 2005-05-15) ~ 00:07:08 UTC
Fetching request 6 of 14 (2005-05-16 to 2005-06-11) ~ 00:07:09 UTC
Fetching request 7 of 14 (2005-06-12 to 2005-07-08) ~ 00:07:09 UTC
Fetching request 8 of 14 (2005-07-09 to 2005-08-04) ~ 00:07:10 UTC
Fetching request 9 of 14 (2005-08-05 to 2005-08-31) ~ 00:07:16 UTC
Fetching request 10 of 14 (2005-09-01 to 2005-09-27) ~ 00:07:21 UTC
Fetching request 11 of 14 (2005-09-28 to 2005-10-24) ~ 00:07:27 UTC
Fetching request 12 of 14 (2005-10-25 to 2005-11-20) ~ 00:07:32 UTC
Fetching request 13 of 14 (2005-11-21 to 2005-12-17) ~ 00:07:37 UTC
Fetching request 14 of 14 (2005-12-18 to 2005-12-31) ~ 00:07:42 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2006-01-01 to 2006-01-27) ~ 00:07:49 UTC
Fetching request 2 of 14 (2006-01-28 to 2006-02-23) ~ 00:07:50 UTC
Fetching request 3 of 14 (2006-02-24 to 2006-03-22) ~ 00:07:50 UTC
Fetching request 4 of 14 (2006-03-23 to 2006-04-18) ~ 00:07:50 UTC
Fetching request 5 of 14 (2006-04-19 to 2006-05-15) ~ 00:07:50 UTC
Fetching request 6 of 14 (2006-05-16 to 2006-06-11) ~ 00:07:51 UTC
Fetching request 7 of 14 (2006-06-12 to 2006-07-08) ~ 00:07:54 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2006_nc/237b538474ca5cd2286e29459c38461d.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2007-01-01 to 2007-01-27) ~ 00:08:01 UTC
Fetching request 2 of 14 (2007-01-28 to 2007-02-23) ~ 00:08:07 UTC
Fetching request 3 of 14 (2007-02-24 to 2007-03-22) ~ 00:08:11 UTC
Fetching request 4 of 14 (2007-03-23 to 2007-04-18) ~ 00:08:15 UTC
Fetching request 5 of 14 (2007-04-19 to 2007-05-15) ~ 00:08:21 UTC
Fetching request 6 of 14 (2007-05-16 to 2007-06-11) ~ 00:08:25 UTC
Fetching request 7 of 14 (2007-06-12 to 2007-07-08) ~ 00:08:29 UTC
Fetching request 8 of 14 (2007-07-09 to 2007-08-04) ~ 00:08:32 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2007_nc/129e3bb35e5d279026f7ba83ef7a20da.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2007_nc/129e3bb35e5d279026f7ba83ef7a20da.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2007_nc/129e3bb35e5d279026f7ba83ef7a20da.nc (return_on_error= FALSE )
RETRYing...
Fetching request 9 of 14 (2007-08-05 to 2007-08-31) ~ 00:08:37 UTC
Fetching request 10 of 14 (2007-09-01 to 2007-09-27) ~ 00:08:40 UTC
Fetching request 11 of 14 (2007-09-28 to 2007-10-24) ~ 00:08:45 UTC
Fetching request 12 of 14 (2007-10-25 to 2007-11-20) ~ 00:08:48 UTC
Fetching request 13 of 14 (2007-11-21 to 2007-12-17) ~ 00:08:52 UTC
Fetching request 14 of 14 (2007-12-18 to 2007-12-31) ~ 00:08:56 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2008-01-01 to 2008-01-27) ~ 00:09:05 UTC
Fetching request 2 of 14 (2008-01-28 to 2008-02-23) ~ 00:09:05 UTC
Fetching request 3 of 14 (2008-02-24 to 2008-03-21) ~ 00:09:05 UTC
Fetching request 4 of 14 (2008-03-22 to 2008-04-17) ~ 00:09:06 UTC
Fetching request 5 of 14 (2008-04-18 to 2008-05-14) ~ 00:09:06 UTC
Fetching request 6 of 14 (2008-05-15 to 2008-06-10) ~ 00:09:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2008_nc/7719c79de5c850256e4a6623d17b1eb4.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2009-01-01 to 2009-01-27) ~ 00:09:16 UTC
Fetching request 2 of 14 (2009-01-28 to 2009-02-23) ~ 00:09:21 UTC
Fetching request 3 of 14 (2009-02-24 to 2009-03-22) ~ 00:09:25 UTC
Fetching request 4 of 14 (2009-03-23 to 2009-04-18) ~ 00:09:30 UTC
Fetching request 5 of 14 (2009-04-19 to 2009-05-15) ~ 00:09:34 UTC
Fetching request 6 of 14 (2009-05-16 to 2009-06-11) ~ 00:09:39 UTC
Fetching request 7 of 14 (2009-06-12 to 2009-07-08) ~ 00:09:43 UTC
Fetching request 8 of 14 (2009-07-09 to 2009-08-04) ~ 00:09:47 UTC
Fetching request 9 of 14 (2009-08-05 to 2009-08-31) ~ 00:09:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2009_nc/e690cb10fd73a50c417f7d64ee479542.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2010-01-01 to 2010-01-27) ~ 00:09:58 UTC
Fetching request 2 of 14 (2010-01-28 to 2010-02-23) ~ 00:10:03 UTC
Fetching request 3 of 14 (2010-02-24 to 2010-03-22) ~ 00:10:07 UTC
Fetching request 4 of 14 (2010-03-23 to 2010-04-18) ~ 00:10:12 UTC
Fetching request 5 of 14 (2010-04-19 to 2010-05-15) ~ 00:10:18 UTC
Fetching request 6 of 14 (2010-05-16 to 2010-06-11) ~ 00:10:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2010_nc/679099131e1bc1f191be0434ac1160aa.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2011-01-01 to 2011-01-27) ~ 00:10:30 UTC
Fetching request 2 of 14 (2011-01-28 to 2011-02-23) ~ 00:10:35 UTC
Fetching request 3 of 14 (2011-02-24 to 2011-03-22) ~ 00:10:39 UTC
Fetching request 4 of 14 (2011-03-23 to 2011-04-18) ~ 00:10:44 UTC
Fetching request 5 of 14 (2011-04-19 to 2011-05-15) ~ 00:10:49 UTC
Fetching request 6 of 14 (2011-05-16 to 2011-06-11) ~ 00:10:53 UTC
Fetching request 7 of 14 (2011-06-12 to 2011-07-08) ~ 00:10:57 UTC
Fetching request 8 of 14 (2011-07-09 to 2011-08-04) ~ 00:11:01 UTC
Fetching request 9 of 14 (2011-08-05 to 2011-08-31) ~ 00:11:05 UTC
Fetching request 10 of 14 (2011-09-01 to 2011-09-27) ~ 00:11:09 UTC
Fetching request 11 of 14 (2011-09-28 to 2011-10-24) ~ 00:11:13 UTC
Fetching request 12 of 14 (2011-10-25 to 2011-11-20) ~ 00:11:17 UTC
Fetching request 13 of 14 (2011-11-21 to 2011-12-17) ~ 00:11:21 UTC
Fetching request 14 of 14 (2011-12-18 to 2011-12-31) ~ 00:11:24 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2012-01-01 to 2012-01-27) ~ 00:11:31 UTC
Fetching request 2 of 14 (2012-01-28 to 2012-02-23) ~ 00:11:32 UTC
Fetching request 3 of 14 (2012-02-24 to 2012-03-21) ~ 00:11:33 UTC
Fetching request 4 of 14 (2012-03-22 to 2012-04-17) ~ 00:11:37 UTC
Fetching request 5 of 14 (2012-04-18 to 2012-05-14) ~ 00:11:42 UTC
Fetching request 6 of 14 (2012-05-15 to 2012-06-10) ~ 00:11:48 UTC
Fetching request 7 of 14 (2012-06-11 to 2012-07-07) ~ 00:11:53 UTC
Fetching request 8 of 14 (2012-07-08 to 2012-08-03) ~ 00:11:58 UTC
Fetching request 9 of 14 (2012-08-04 to 2012-08-30) ~ 00:12:03 UTC
Fetching request 10 of 14 (2012-08-31 to 2012-09-26) ~ 00:12:08 UTC
Fetching request 11 of 14 (2012-09-27 to 2012-10-23) ~ 00:12:12 UTC
Fetching request 12 of 14 (2012-10-24 to 2012-11-19) ~ 00:12:15 UTC
Fetching request 13 of 14 (2012-11-20 to 2012-12-16) ~ 00:12:19 UTC
Fetching request 14 of 14 (2012-12-17 to 2012-12-31) ~ 00:12:25 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2013-01-01 to 2013-01-27) ~ 00:12:33 UTC
Fetching request 2 of 14 (2013-01-28 to 2013-02-23) ~ 00:12:33 UTC
Fetching request 3 of 14 (2013-02-24 to 2013-03-22) ~ 00:12:34 UTC
Fetching request 4 of 14 (2013-03-23 to 2013-04-18) ~ 00:12:34 UTC
Fetching request 5 of 14 (2013-04-19 to 2013-05-15) ~ 00:12:34 UTC
Fetching request 6 of 14 (2013-05-16 to 2013-06-11) ~ 00:12:34 UTC
Fetching request 7 of 14 (2013-06-12 to 2013-07-08) ~ 00:12:34 UTC
Fetching request 8 of 14 (2013-07-09 to 2013-08-04) ~ 00:12:35 UTC
Fetching request 9 of 14 (2013-08-05 to 2013-08-31) ~ 00:12:35 UTC
Fetching request 10 of 14 (2013-09-01 to 2013-09-27) ~ 00:12:35 UTC
Fetching request 11 of 14 (2013-09-28 to 2013-10-24) ~ 00:12:35 UTC
Fetching request 12 of 14 (2013-10-25 to 2013-11-20) ~ 00:12:37 UTC
Fetching request 13 of 14 (2013-11-21 to 2013-12-17) ~ 00:12:40 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2013_nc/acb4d7ae1b6146127f878447c1684cc3.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2014-01-01 to 2014-01-27) ~ 00:12:48 UTC
Fetching request 2 of 14 (2014-01-28 to 2014-02-23) ~ 00:12:55 UTC
Fetching request 3 of 14 (2014-02-24 to 2014-03-22) ~ 00:12:58 UTC
Fetching request 4 of 14 (2014-03-23 to 2014-04-18) ~ 00:13:03 UTC
Fetching request 5 of 14 (2014-04-19 to 2014-05-15) ~ 00:13:07 UTC
Fetching request 6 of 14 (2014-05-16 to 2014-06-11) ~ 00:13:11 UTC
Fetching request 7 of 14 (2014-06-12 to 2014-07-08) ~ 00:13:16 UTC
Fetching request 8 of 14 (2014-07-09 to 2014-08-04) ~ 00:13:21 UTC
Fetching request 9 of 14 (2014-08-05 to 2014-08-31) ~ 00:13:26 UTC
Fetching request 10 of 14 (2014-09-01 to 2014-09-27) ~ 00:13:34 UTC
Fetching request 11 of 14 (2014-09-28 to 2014-10-24) ~ 00:13:41 UTC
Fetching request 12 of 14 (2014-10-25 to 2014-11-20) ~ 00:13:46 UTC
Fetching request 13 of 14 (2014-11-21 to 2014-12-17) ~ 00:13:53 UTC
Fetching request 14 of 14 (2014-12-18 to 2014-12-31) ~ 00:13:57 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2015-01-01 to 2015-01-27) ~ 00:14:05 UTC
Fetching request 2 of 14 (2015-01-28 to 2015-02-23) ~ 00:14:06 UTC
Fetching request 3 of 14 (2015-02-24 to 2015-03-22) ~ 00:14:06 UTC
Fetching request 4 of 14 (2015-03-23 to 2015-04-18) ~ 00:14:06 UTC
Fetching request 5 of 14 (2015-04-19 to 2015-05-15) ~ 00:14:06 UTC
Fetching request 6 of 14 (2015-05-16 to 2015-06-11) ~ 00:14:07 UTC
Fetching request 7 of 14 (2015-06-12 to 2015-07-08) ~ 00:14:07 UTC
Fetching request 8 of 14 (2015-07-09 to 2015-08-04) ~ 00:14:07 UTC
Fetching request 9 of 14 (2015-08-05 to 2015-08-31) ~ 00:14:07 UTC
Fetching request 10 of 14 (2015-09-01 to 2015-09-27) ~ 00:14:07 UTC
Fetching request 11 of 14 (2015-09-28 to 2015-10-24) ~ 00:14:08 UTC
Fetching request 12 of 14 (2015-10-25 to 2015-11-20) ~ 00:14:08 UTC
Fetching request 13 of 14 (2015-11-21 to 2015-12-17) ~ 00:14:08 UTC
Fetching request 14 of 14 (2015-12-18 to 2015-12-31) ~ 00:14:09 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2015_nc/21f5be17a842933ea4a0170275387f29.nc (return_on_error= FALSE )
RETRYing...
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2016-01-01 to 2016-01-27) ~ 00:14:17 UTC
Fetching request 2 of 14 (2016-01-28 to 2016-02-23) ~ 00:14:23 UTC
Fetching request 3 of 14 (2016-02-24 to 2016-03-21) ~ 00:14:27 UTC
Fetching request 4 of 14 (2016-03-22 to 2016-04-17) ~ 00:14:33 UTC
Fetching request 5 of 14 (2016-04-18 to 2016-05-14) ~ 00:14:41 UTC
Fetching request 6 of 14 (2016-05-15 to 2016-06-10) ~ 00:14:49 UTC
Fetching request 7 of 14 (2016-06-11 to 2016-07-07) ~ 00:14:58 UTC
Fetching request 8 of 14 (2016-07-08 to 2016-08-03) ~ 00:15:07 UTC
Fetching request 9 of 14 (2016-08-04 to 2016-08-30) ~ 00:15:15 UTC
Fetching request 10 of 14 (2016-08-31 to 2016-09-26) ~ 00:15:22 UTC
Fetching request 11 of 14 (2016-09-27 to 2016-10-23) ~ 00:15:28 UTC
Fetching request 12 of 14 (2016-10-24 to 2016-11-19) ~ 00:15:35 UTC
Fetching request 13 of 14 (2016-11-20 to 2016-12-16) ~ 00:15:44 UTC
Fetching request 14 of 14 (2016-12-17 to 2016-12-31) ~ 00:15:50 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2017-01-01 to 2017-01-27) ~ 00:16:02 UTC
Fetching request 2 of 14 (2017-01-28 to 2017-02-23) ~ 00:16:02 UTC
Fetching request 3 of 14 (2017-02-24 to 2017-03-22) ~ 00:16:02 UTC
Fetching request 4 of 14 (2017-03-23 to 2017-04-18) ~ 00:16:02 UTC
Fetching request 5 of 14 (2017-04-19 to 2017-05-15) ~ 00:16:03 UTC
Fetching request 6 of 14 (2017-05-16 to 2017-06-11) ~ 00:16:03 UTC
Fetching request 7 of 14 (2017-06-12 to 2017-07-08) ~ 00:16:03 UTC
Fetching request 8 of 14 (2017-07-09 to 2017-08-04) ~ 00:16:03 UTC
Fetching request 9 of 14 (2017-08-05 to 2017-08-31) ~ 00:16:03 UTC
Fetching request 10 of 14 (2017-09-01 to 2017-09-27) ~ 00:16:04 UTC
Fetching request 11 of 14 (2017-09-28 to 2017-10-24) ~ 00:16:04 UTC
Fetching request 12 of 14 (2017-10-25 to 2017-11-20) ~ 00:16:04 UTC
Fetching request 13 of 14 (2017-11-21 to 2017-12-17) ~ 00:16:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2017_nc/2b160c921af00e274ed32cc03dee6ecc.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2018-01-01 to 2018-01-27) ~ 00:16:16 UTC
Fetching request 2 of 14 (2018-01-28 to 2018-02-23) ~ 00:16:22 UTC
Fetching request 3 of 14 (2018-02-24 to 2018-03-22) ~ 00:16:28 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2018_nc/b746990593f9086c44e95a992a225637.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2019-01-01 to 2019-01-27) ~ 00:16:36 UTC
Fetching request 2 of 14 (2019-01-28 to 2019-02-23) ~ 00:16:44 UTC
Fetching request 3 of 14 (2019-02-24 to 2019-03-22) ~ 00:16:52 UTC
Fetching request 4 of 14 (2019-03-23 to 2019-04-18) ~ 00:16:58 UTC
Fetching request 5 of 14 (2019-04-19 to 2019-05-15) ~ 00:17:08 UTC
Fetching request 6 of 14 (2019-05-16 to 2019-06-11) ~ 00:17:19 UTC
Fetching request 7 of 14 (2019-06-12 to 2019-07-08) ~ 00:17:36 UTC
Fetching request 8 of 14 (2019-07-09 to 2019-08-04) ~ 00:17:45 UTC
Fetching request 9 of 14 (2019-08-05 to 2019-08-31) ~ 00:17:54 UTC
Fetching request 10 of 14 (2019-09-01 to 2019-09-27) ~ 00:18:02 UTC
Fetching request 11 of 14 (2019-09-28 to 2019-10-24) ~ 00:18:09 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2019_nc/f1ee6d034baa64416044f55f281ebeae.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2019_nc/f1ee6d034baa64416044f55f281ebeae.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2019_nc/f1ee6d034baa64416044f55f281ebeae.nc (return_on_error= FALSE )
RETRYing...
Fetching request 12 of 14 (2019-10-25 to 2019-11-20) ~ 00:18:18 UTC
Fetching request 13 of 14 (2019-11-21 to 2019-12-17) ~ 00:18:26 UTC
Fetching request 14 of 14 (2019-12-18 to 2019-12-31) ~ 00:18:34 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2020-01-01 to 2020-01-27) ~ 00:18:48 UTC
Fetching request 2 of 14 (2020-01-28 to 2020-02-23) ~ 00:18:48 UTC
Fetching request 3 of 14 (2020-02-24 to 2020-03-21) ~ 00:18:48 UTC
Fetching request 4 of 14 (2020-03-22 to 2020-04-17) ~ 00:18:48 UTC
Fetching request 5 of 14 (2020-04-18 to 2020-05-14) ~ 00:18:54 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2020_nc/f2bb858c22ff7cd28e9e909b804606a9.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2021-01-01 to 2021-01-27) ~ 00:19:01 UTC
Fetching request 2 of 14 (2021-01-28 to 2021-02-23) ~ 00:19:07 UTC
Fetching request 3 of 14 (2021-02-24 to 2021-03-22) ~ 00:19:12 UTC
Fetching request 4 of 14 (2021-03-23 to 2021-04-18) ~ 00:19:18 UTC
Fetching request 5 of 14 (2021-04-19 to 2021-05-15) ~ 00:19:24 UTC
Fetching request 6 of 14 (2021-05-16 to 2021-06-11) ~ 00:19:32 UTC
Fetching request 7 of 14 (2021-06-12 to 2021-07-08) ~ 00:19:36 UTC
Fetching request 8 of 14 (2021-07-09 to 2021-08-04) ~ 00:19:43 UTC
Fetching request 9 of 14 (2021-08-05 to 2021-08-31) ~ 00:19:52 UTC
Fetching request 10 of 14 (2021-09-01 to 2021-09-27) ~ 00:20:01 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/8ba362a6ff84e09f8d37376aa2eecaca.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/8ba362a6ff84e09f8d37376aa2eecaca.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/8ba362a6ff84e09f8d37376aa2eecaca.nc (return_on_error= FALSE )
RETRYing...
Fetching request 11 of 14 (2021-09-28 to 2021-10-24) ~ 00:20:11 UTC
Fetching request 12 of 14 (2021-10-25 to 2021-11-20) ~ 00:20:20 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2021_nc/f5d7b0ace555da874c3cf4d976f21227.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2022-01-01 to 2022-01-27) ~ 00:20:27 UTC
Fetching request 2 of 14 (2022-01-28 to 2022-02-23) ~ 00:20:42 UTC
Fetching request 3 of 14 (2022-02-24 to 2022-03-22) ~ 00:20:49 UTC
Fetching request 4 of 14 (2022-03-23 to 2022-04-18) ~ 00:20:54 UTC
Fetching request 5 of 14 (2022-04-19 to 2022-05-15) ~ 00:20:58 UTC
Fetching request 6 of 14 (2022-05-16 to 2022-06-11) ~ 00:21:02 UTC
Fetching request 7 of 14 (2022-06-12 to 2022-07-08) ~ 00:21:07 UTC
Fetching request 8 of 14 (2022-07-09 to 2022-08-04) ~ 00:21:14 UTC
Fetching request 9 of 14 (2022-08-05 to 2022-08-31) ~ 00:21:19 UTC
Fetching request 10 of 14 (2022-09-01 to 2022-09-27) ~ 00:21:25 UTC
Fetching request 11 of 14 (2022-09-28 to 2022-10-24) ~ 00:21:31 UTC
Fetching request 12 of 14 (2022-10-25 to 2022-11-20) ~ 00:21:38 UTC
Fetching request 13 of 14 (2022-11-21 to 2022-12-17) ~ 00:21:44 UTC
Fetching request 14 of 14 (2022-12-18 to 2022-12-31) ~ 00:21:49 UTC
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2023-01-01 to 2023-01-27) ~ 00:21:58 UTC
Fetching request 2 of 14 (2023-01-28 to 2023-02-23) ~ 00:21:58 UTC
Fetching request 3 of 14 (2023-02-24 to 2023-03-22) ~ 00:21:59 UTC
Fetching request 4 of 14 (2023-03-23 to 2023-04-18) ~ 00:21:59 UTC
Fetching request 5 of 14 (2023-04-19 to 2023-05-15) ~ 00:21:59 UTC
Fetching request 6 of 14 (2023-05-16 to 2023-06-11) ~ 00:21:59 UTC
Fetching request 7 of 14 (2023-06-12 to 2023-07-08) ~ 00:21:59 UTC
Fetching request 8 of 14 (2023-07-09 to 2023-08-04) ~ 00:22:00 UTC
Fetching request 9 of 14 (2023-08-05 to 2023-08-31) ~ 00:22:00 UTC
Fetching request 10 of 14 (2023-09-01 to 2023-09-27) ~ 00:22:00 UTC
Fetching request 11 of 14 (2023-09-28 to 2023-10-24) ~ 00:22:01 UTC
Fetching request 12 of 14 (2023-10-25 to 2023-11-20) ~ 00:22:06 UTC
Fetching request 13 of 14 (2023-11-21 to 2023-12-17) ~ 00:22:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2023_nc/9d81b75641b7e992170ccf5e8d41a380.nc (return_on_error= FALSE )
Downloading 14 requests, up to 27 time slices each
Fetching request 1 of 14 (2024-01-01 to 2024-01-27) ~ 00:22:19 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/28a0c612ffde5f231921ff6a0883ae1d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/28a0c612ffde5f231921ff6a0883ae1d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/28a0c612ffde5f231921ff6a0883ae1d.nc (return_on_error= FALSE )
RETRYing...
Fetching request 2 of 14 (2024-01-28 to 2024-02-23) ~ 00:22:26 UTC
Fetching request 3 of 14 (2024-02-24 to 2024-03-21) ~ 00:22:31 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS/2024_nc/b905eebe7cfc6e09d2b48b6f6039510b.nc (return_on_error= FALSE )
Downloading 6 requests, up to 27 time slices each
Fetching request 1 of 6 (2025-01-01 to 2025-01-27) ~ 00:22:39 UTC
Fetching request 2 of 6 (2025-01-28 to 2025-02-23) ~ 00:22:46 UTC
Fetching request 3 of 6 (2025-02-24 to 2025-03-22) ~ 00:22:52 UTC
Fetching request 4 of 6 (2025-03-23 to 2025-04-18) ~ 00:23:00 UTC
Fetching request 5 of 6 (2025-04-19 to 2025-05-15) ~ 00:23:07 UTC
Fetching request 6 of 6 (2025-05-16 to 2025-06-11) ~ 00:23:15 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1985-01-01 to 1985-06-11) ~ 00:23:29 UTC
Fetching request 2 of 3 (1985-06-12 to 1985-11-20) ~ 00:23:58 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1985_nc/88be3b050e6866829298c1e40a9eedd0.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1986-01-01 to 1986-06-11) ~ 00:24:35 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1986_nc/55e0dce44860b53abe542a9a162ea25f.nc (return_on_error= FALSE )
RETRYing...
Fetching request 2 of 3 (1986-06-12 to 1986-11-20) ~ 00:25:04 UTC
Fetching request 3 of 3 (1986-11-21 to 1986-12-31) ~ 00:25:30 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1987-01-01 to 1987-06-11) ~ 00:25:42 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Fetching request 2 of 3 (1987-06-12 to 1987-11-20) ~ 00:26:45 UTC
Fetching request 3 of 3 (1987-11-21 to 1987-12-31) ~ 00:27:04 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1988-01-01 to 1988-06-10) ~ 00:27:15 UTC
Fetching request 2 of 3 (1988-06-11 to 1988-11-19) ~ 00:27:40 UTC
Fetching request 3 of 3 (1988-11-20 to 1988-12-31) ~ 00:28:15 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1989-01-01 to 1989-06-11) ~ 00:28:34 UTC
Fetching request 2 of 3 (1989-06-12 to 1989-11-20) ~ 00:28:57 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1989_nc/0249e02c61821ea762fa79208f7b8139.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1990-01-01 to 1990-06-11) ~ 00:29:04 UTC
Fetching request 2 of 3 (1990-06-12 to 1990-11-20) ~ 00:29:33 UTC
Fetching request 3 of 3 (1990-11-21 to 1990-12-31) ~ 00:29:55 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1991-01-01 to 1991-06-11) ~ 00:30:08 UTC
Fetching request 2 of 3 (1991-06-12 to 1991-11-20) ~ 00:30:44 UTC
Fetching request 3 of 3 (1991-11-21 to 1991-12-31) ~ 00:31:19 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1992-01-01 to 1992-06-10) ~ 00:31:37 UTC
Fetching request 2 of 3 (1992-06-11 to 1992-11-19) ~ 00:31:38 UTC
Fetching request 3 of 3 (1992-11-20 to 1992-12-31) ~ 00:32:02 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1992_nc/306675c465edb0afef9e59139867c5e0.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1993-01-01 to 1993-06-11) ~ 00:32:10 UTC
Fetching request 2 of 3 (1993-06-12 to 1993-11-20) ~ 00:32:37 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1993_nc/028ecf932473802b2e291cf6065b5f00.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1994-01-01 to 1994-06-11) ~ 00:32:45 UTC
Fetching request 2 of 3 (1994-06-12 to 1994-11-20) ~ 00:33:20 UTC
Fetching request 3 of 3 (1994-11-21 to 1994-12-31) ~ 00:33:52 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1995-01-01 to 1995-06-11) ~ 00:34:06 UTC
Fetching request 2 of 3 (1995-06-12 to 1995-11-20) ~ 00:34:25 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/1995_nc/34e262a3e80e01b77c42cab9f028ae98.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1996-01-01 to 1996-06-10) ~ 00:34:33 UTC
Fetching request 2 of 3 (1996-06-11 to 1996-11-19) ~ 00:35:04 UTC
Fetching request 3 of 3 (1996-11-20 to 1996-12-31) ~ 00:35:32 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1997-01-01 to 1997-06-11) ~ 00:35:43 UTC
Fetching request 2 of 3 (1997-06-12 to 1997-11-20) ~ 00:36:06 UTC
Fetching request 3 of 3 (1997-11-21 to 1997-12-31) ~ 00:36:23 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1998-01-01 to 1998-06-11) ~ 00:36:32 UTC
Fetching request 2 of 3 (1998-06-12 to 1998-11-20) ~ 00:36:46 UTC
Fetching request 3 of 3 (1998-11-21 to 1998-12-31) ~ 00:37:22 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (1999-01-01 to 1999-06-11) ~ 00:37:37 UTC
Fetching request 2 of 3 (1999-06-12 to 1999-11-20) ~ 00:37:37 UTC
Fetching request 3 of 3 (1999-11-21 to 1999-12-31) ~ 00:38:07 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2000-01-01 to 2000-06-10) ~ 00:38:20 UTC
Fetching request 2 of 3 (2000-06-11 to 2000-11-19) ~ 00:38:57 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2000_nc/9cb2d2bfe4ea02f1c218b6c7aa82d3dc.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2001-01-01 to 2001-06-11) ~ 00:39:05 UTC
Fetching request 2 of 3 (2001-06-12 to 2001-11-20) ~ 00:39:32 UTC
Fetching request 3 of 3 (2001-11-21 to 2001-12-31) ~ 00:39:57 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2001_nc/f34cc99709cf60999ac28275f4c4cb36.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2002-01-01 to 2002-06-11) ~ 00:40:05 UTC
Fetching request 2 of 3 (2002-06-12 to 2002-11-20) ~ 00:40:24 UTC
Fetching request 3 of 3 (2002-11-21 to 2002-12-31) ~ 00:40:49 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2003-01-01 to 2003-06-11) ~ 00:41:01 UTC
Fetching request 2 of 3 (2003-06-12 to 2003-11-20) ~ 00:41:01 UTC
Fetching request 3 of 3 (2003-11-21 to 2003-12-31) ~ 00:41:20 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2003_nc/6a30cfc611b6483c1f26933aa1cdb523.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2004-01-01 to 2004-06-10) ~ 00:41:29 UTC
Fetching request 2 of 3 (2004-06-11 to 2004-11-19) ~ 00:41:52 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2004_nc/76ce50e848e3963e078e62d62b5415e7.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2005-01-01 to 2005-06-11) ~ 00:42:00 UTC
Fetching request 2 of 3 (2005-06-12 to 2005-11-20) ~ 00:42:24 UTC
Fetching request 3 of 3 (2005-11-21 to 2005-12-31) ~ 00:42:46 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2006-01-01 to 2006-06-11) ~ 00:42:56 UTC
Fetching request 2 of 3 (2006-06-12 to 2006-11-20) ~ 00:43:15 UTC
Fetching request 3 of 3 (2006-11-21 to 2006-12-31) ~ 00:43:38 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2007-01-01 to 2007-06-11) ~ 00:43:48 UTC
Fetching request 2 of 3 (2007-06-12 to 2007-11-20) ~ 00:43:49 UTC
Fetching request 3 of 3 (2007-11-21 to 2007-12-31) ~ 00:44:10 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2007_nc/00090225f2d0b4850568cf489ffb92f8.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2008-01-01 to 2008-06-10) ~ 00:44:18 UTC
Fetching request 2 of 3 (2008-06-11 to 2008-11-19) ~ 00:44:38 UTC
Fetching request 3 of 3 (2008-11-20 to 2008-12-31) ~ 00:45:00 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2009-01-01 to 2009-06-11) ~ 00:45:11 UTC
Fetching request 2 of 3 (2009-06-12 to 2009-11-20) ~ 00:45:27 UTC
Fetching request 3 of 3 (2009-11-21 to 2009-12-31) ~ 00:46:05 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2010-01-01 to 2010-06-11) ~ 00:46:18 UTC
Fetching request 2 of 3 (2010-06-12 to 2010-11-20) ~ 00:46:18 UTC
Fetching request 3 of 3 (2010-11-21 to 2010-12-31) ~ 00:46:32 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2011-01-01 to 2011-06-11) ~ 00:46:43 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2011_nc/eb8d37dac6a247c0cdfc207cf19565ce.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2012-01-01 to 2012-06-10) ~ 00:46:51 UTC
Fetching request 2 of 3 (2012-06-11 to 2012-11-19) ~ 00:47:25 UTC
Fetching request 3 of 3 (2012-11-20 to 2012-12-31) ~ 00:47:56 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2013-01-01 to 2013-06-11) ~ 00:48:07 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2013_nc/69ef533dc270ad9dfe697b947d428e40.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2014-01-01 to 2014-06-11) ~ 00:48:15 UTC
Fetching request 2 of 3 (2014-06-12 to 2014-11-20) ~ 00:48:40 UTC
Fetching request 3 of 3 (2014-11-21 to 2014-12-31) ~ 00:49:07 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2015-01-01 to 2015-06-11) ~ 00:49:19 UTC
Fetching request 2 of 3 (2015-06-12 to 2015-11-20) ~ 00:50:02 UTC
Fetching request 3 of 3 (2015-11-21 to 2015-12-31) ~ 00:50:31 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2016-01-01 to 2016-06-10) ~ 00:51:00 UTC
Error : 

RETRYing...
Fetching request 2 of 3 (2016-06-11 to 2016-11-19) ~ 00:52:40 UTC
Fetching request 3 of 3 (2016-11-20 to 2016-12-31) ~ 00:53:15 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2017-01-01 to 2017-06-11) ~ 00:53:30 UTC
Fetching request 2 of 3 (2017-06-12 to 2017-11-20) ~ 00:53:44 UTC
Fetching request 3 of 3 (2017-11-21 to 2017-12-31) ~ 00:54:03 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2018-01-01 to 2018-06-11) ~ 00:54:12 UTC
Fetching request 2 of 3 (2018-06-12 to 2018-11-20) ~ 00:54:12 UTC
Fetching request 3 of 3 (2018-11-21 to 2018-12-31) ~ 00:54:31 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2019-01-01 to 2019-06-11) ~ 00:54:41 UTC
Fetching request 2 of 3 (2019-06-12 to 2019-11-20) ~ 00:55:05 UTC
Fetching request 3 of 3 (2019-11-21 to 2019-12-31) ~ 00:55:35 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2020-01-01 to 2020-06-10) ~ 00:55:50 UTC
Fetching request 2 of 3 (2020-06-11 to 2020-11-19) ~ 00:55:51 UTC
Fetching request 3 of 3 (2020-11-20 to 2020-12-31) ~ 00:56:08 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2021-01-01 to 2021-06-11) ~ 00:56:21 UTC
Fetching request 2 of 3 (2021-06-12 to 2021-11-20) ~ 00:56:40 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-david/2021_nc/e396df8269922d75a6a58ab9b3f84a97.nc (return_on_error= FALSE )
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2022-01-01 to 2022-06-11) ~ 00:56:48 UTC
Fetching request 2 of 3 (2022-06-12 to 2022-11-20) ~ 00:57:19 UTC
Fetching request 3 of 3 (2022-11-21 to 2022-12-31) ~ 00:57:43 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2023-01-01 to 2023-06-11) ~ 00:57:53 UTC
Fetching request 2 of 3 (2023-06-12 to 2023-11-20) ~ 00:58:13 UTC
Fetching request 3 of 3 (2023-11-21 to 2023-12-31) ~ 00:58:42 UTC
Downloading 3 requests, up to 162 time slices each
Fetching request 1 of 3 (2024-01-01 to 2024-06-10) ~ 00:58:55 UTC
Fetching request 2 of 3 (2024-06-11 to 2024-11-20) ~ 00:58:55 UTC
Fetching request 3 of 3 (2024-11-21 to 2024-12-31) ~ 00:59:21 UTC
Downloading 1 requests, up to 162 time slices each
Fetching request 1 of 1 (2025-01-01 to 2025-06-11) ~ 00:59:36 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1985-01-01 to 1985-01-28) ~ 01:00:05 UTC
Fetching request 2 of 14 (1985-01-29 to 1985-02-25) ~ 01:00:13 UTC
Fetching request 3 of 14 (1985-02-26 to 1985-03-25) ~ 01:00:19 UTC
Fetching request 4 of 14 (1985-03-26 to 1985-04-22) ~ 01:00:25 UTC
Fetching request 5 of 14 (1985-04-23 to 1985-05-20) ~ 01:00:33 UTC
Fetching request 6 of 14 (1985-05-21 to 1985-06-17) ~ 01:00:39 UTC
Fetching request 7 of 14 (1985-06-18 to 1985-07-15) ~ 01:00:46 UTC
Fetching request 8 of 14 (1985-07-16 to 1985-08-12) ~ 01:00:52 UTC
Fetching request 9 of 14 (1985-08-13 to 1985-09-09) ~ 01:01:00 UTC
Fetching request 10 of 14 (1985-09-10 to 1985-10-07) ~ 01:01:06 UTC
Fetching request 11 of 14 (1985-10-08 to 1985-11-04) ~ 01:01:11 UTC
Fetching request 12 of 14 (1985-11-05 to 1985-12-02) ~ 01:01:15 UTC
Fetching request 13 of 14 (1985-12-03 to 1985-12-30) ~ 01:01:21 UTC
Fetching request 14 of 14 (1985-12-31 to 1985-12-31) ~ 01:01:27 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1986-01-01 to 1986-01-28) ~ 01:01:35 UTC
Fetching request 2 of 14 (1986-01-29 to 1986-02-25) ~ 01:01:35 UTC
Fetching request 3 of 14 (1986-02-26 to 1986-03-25) ~ 01:01:35 UTC
Fetching request 4 of 14 (1986-03-26 to 1986-04-22) ~ 01:01:36 UTC
Fetching request 5 of 14 (1986-04-23 to 1986-05-20) ~ 01:01:36 UTC
Fetching request 6 of 14 (1986-05-21 to 1986-06-17) ~ 01:01:36 UTC
Fetching request 7 of 14 (1986-06-18 to 1986-07-15) ~ 01:01:36 UTC
Fetching request 8 of 14 (1986-07-16 to 1986-08-12) ~ 01:01:36 UTC
Fetching request 9 of 14 (1986-08-13 to 1986-09-09) ~ 01:01:37 UTC
Fetching request 10 of 14 (1986-09-10 to 1986-10-07) ~ 01:01:37 UTC
Fetching request 11 of 14 (1986-10-08 to 1986-11-04) ~ 01:01:37 UTC
Fetching request 12 of 14 (1986-11-05 to 1986-12-02) ~ 01:01:37 UTC
Fetching request 13 of 14 (1986-12-03 to 1986-12-30) ~ 01:01:37 UTC
Fetching request 14 of 14 (1986-12-31 to 1986-12-31) ~ 01:01:39 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1987-01-01 to 1987-01-28) ~ 01:01:45 UTC
Fetching request 2 of 14 (1987-01-29 to 1987-02-25) ~ 01:01:52 UTC
Fetching request 3 of 14 (1987-02-26 to 1987-03-25) ~ 01:01:57 UTC
Fetching request 4 of 14 (1987-03-26 to 1987-04-22) ~ 01:02:03 UTC
Fetching request 5 of 14 (1987-04-23 to 1987-05-20) ~ 01:02:08 UTC
Fetching request 6 of 14 (1987-05-21 to 1987-06-17) ~ 01:02:14 UTC
Fetching request 7 of 14 (1987-06-18 to 1987-07-15) ~ 01:02:19 UTC
Fetching request 8 of 14 (1987-07-16 to 1987-08-12) ~ 01:02:23 UTC
Fetching request 9 of 14 (1987-08-13 to 1987-09-09) ~ 01:02:28 UTC
Fetching request 10 of 14 (1987-09-10 to 1987-10-07) ~ 01:02:33 UTC
Fetching request 11 of 14 (1987-10-08 to 1987-11-04) ~ 01:02:38 UTC
Fetching request 12 of 14 (1987-11-05 to 1987-12-02) ~ 01:02:42 UTC
Fetching request 13 of 14 (1987-12-03 to 1987-12-30) ~ 01:02:46 UTC
Fetching request 14 of 14 (1987-12-31 to 1987-12-31) ~ 01:02:50 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1988-01-01 to 1988-01-28) ~ 01:02:57 UTC
Fetching request 2 of 14 (1988-01-29 to 1988-02-25) ~ 01:02:59 UTC
Fetching request 3 of 14 (1988-02-26 to 1988-03-24) ~ 01:03:02 UTC
Fetching request 4 of 14 (1988-03-25 to 1988-04-21) ~ 01:03:05 UTC
Fetching request 5 of 14 (1988-04-22 to 1988-05-19) ~ 01:03:08 UTC
Fetching request 6 of 14 (1988-05-20 to 1988-06-16) ~ 01:03:10 UTC
Fetching request 7 of 14 (1988-06-17 to 1988-07-14) ~ 01:03:13 UTC
Fetching request 8 of 14 (1988-07-15 to 1988-08-11) ~ 01:03:16 UTC
Fetching request 9 of 14 (1988-08-12 to 1988-09-08) ~ 01:03:19 UTC
Fetching request 10 of 14 (1988-09-09 to 1988-10-06) ~ 01:03:22 UTC
Fetching request 11 of 14 (1988-10-07 to 1988-11-03) ~ 01:03:25 UTC
Fetching request 12 of 14 (1988-11-04 to 1988-12-01) ~ 01:03:28 UTC
Fetching request 13 of 14 (1988-12-02 to 1988-12-29) ~ 01:03:32 UTC
Fetching request 14 of 14 (1988-12-30 to 1988-12-31) ~ 01:03:35 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1989-01-01 to 1989-01-28) ~ 01:03:41 UTC
Fetching request 2 of 14 (1989-01-29 to 1989-02-25) ~ 01:03:42 UTC
Fetching request 3 of 14 (1989-02-26 to 1989-03-25) ~ 01:03:42 UTC
Fetching request 4 of 14 (1989-03-26 to 1989-04-22) ~ 01:03:42 UTC
Fetching request 5 of 14 (1989-04-23 to 1989-05-20) ~ 01:03:42 UTC
Fetching request 6 of 14 (1989-05-21 to 1989-06-17) ~ 01:03:42 UTC
Fetching request 7 of 14 (1989-06-18 to 1989-07-15) ~ 01:03:43 UTC
Fetching request 8 of 14 (1989-07-16 to 1989-08-12) ~ 01:03:43 UTC
Fetching request 9 of 14 (1989-08-13 to 1989-09-09) ~ 01:03:44 UTC
Fetching request 10 of 14 (1989-09-10 to 1989-10-07) ~ 01:03:48 UTC
Fetching request 11 of 14 (1989-10-08 to 1989-11-04) ~ 01:03:52 UTC
Fetching request 12 of 14 (1989-11-05 to 1989-12-02) ~ 01:04:01 UTC
Fetching request 13 of 14 (1989-12-03 to 1989-12-30) ~ 01:04:07 UTC
Fetching request 14 of 14 (1989-12-31 to 1989-12-31) ~ 01:04:12 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1990-01-01 to 1990-01-28) ~ 01:04:19 UTC
Fetching request 2 of 14 (1990-01-29 to 1990-02-25) ~ 01:04:20 UTC
Fetching request 3 of 14 (1990-02-26 to 1990-03-25) ~ 01:04:20 UTC
Fetching request 4 of 14 (1990-03-26 to 1990-04-22) ~ 01:04:20 UTC
Fetching request 5 of 14 (1990-04-23 to 1990-05-20) ~ 01:04:22 UTC
Fetching request 6 of 14 (1990-05-21 to 1990-06-17) ~ 01:04:26 UTC
Fetching request 7 of 14 (1990-06-18 to 1990-07-15) ~ 01:04:30 UTC
Fetching request 8 of 14 (1990-07-16 to 1990-08-12) ~ 01:04:34 UTC
Fetching request 9 of 14 (1990-08-13 to 1990-09-09) ~ 01:04:39 UTC
Fetching request 10 of 14 (1990-09-10 to 1990-10-07) ~ 01:04:44 UTC
Fetching request 11 of 14 (1990-10-08 to 1990-11-04) ~ 01:04:49 UTC
Fetching request 12 of 14 (1990-11-05 to 1990-12-02) ~ 01:04:54 UTC
Fetching request 13 of 14 (1990-12-03 to 1990-12-30) ~ 01:04:59 UTC
Fetching request 14 of 14 (1990-12-31 to 1990-12-31) ~ 01:05:03 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1991-01-01 to 1991-01-28) ~ 01:05:10 UTC
Fetching request 2 of 14 (1991-01-29 to 1991-02-25) ~ 01:05:11 UTC
Fetching request 3 of 14 (1991-02-26 to 1991-03-25) ~ 01:05:11 UTC
Fetching request 4 of 14 (1991-03-26 to 1991-04-22) ~ 01:05:11 UTC
Fetching request 5 of 14 (1991-04-23 to 1991-05-20) ~ 01:05:11 UTC
Fetching request 6 of 14 (1991-05-21 to 1991-06-17) ~ 01:05:11 UTC
Fetching request 7 of 14 (1991-06-18 to 1991-07-15) ~ 01:05:11 UTC
Fetching request 8 of 14 (1991-07-16 to 1991-08-12) ~ 01:05:13 UTC
Fetching request 9 of 14 (1991-08-13 to 1991-09-09) ~ 01:05:17 UTC
Fetching request 10 of 14 (1991-09-10 to 1991-10-07) ~ 01:05:21 UTC
Fetching request 11 of 14 (1991-10-08 to 1991-11-04) ~ 01:05:26 UTC
Fetching request 12 of 14 (1991-11-05 to 1991-12-02) ~ 01:05:30 UTC
Fetching request 13 of 14 (1991-12-03 to 1991-12-30) ~ 01:05:35 UTC
Fetching request 14 of 14 (1991-12-31 to 1991-12-31) ~ 01:05:42 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1992-01-01 to 1992-01-28) ~ 01:05:48 UTC
Fetching request 2 of 14 (1992-01-29 to 1992-02-25) ~ 01:05:48 UTC
Fetching request 3 of 14 (1992-02-26 to 1992-03-24) ~ 01:05:49 UTC
Fetching request 4 of 14 (1992-03-25 to 1992-04-21) ~ 01:05:49 UTC
Fetching request 5 of 14 (1992-04-22 to 1992-05-19) ~ 01:05:49 UTC
Fetching request 6 of 14 (1992-05-20 to 1992-06-16) ~ 01:05:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1992_nc/263442f6aa5a81161511102b3ff6ec1e.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1993-01-01 to 1993-01-28) ~ 01:05:58 UTC
Fetching request 2 of 14 (1993-01-29 to 1993-02-25) ~ 01:06:02 UTC
Fetching request 3 of 14 (1993-02-26 to 1993-03-25) ~ 01:06:06 UTC
Fetching request 4 of 14 (1993-03-26 to 1993-04-22) ~ 01:06:11 UTC
Fetching request 5 of 14 (1993-04-23 to 1993-05-20) ~ 01:06:17 UTC
Fetching request 6 of 14 (1993-05-21 to 1993-06-17) ~ 01:06:22 UTC
Fetching request 7 of 14 (1993-06-18 to 1993-07-15) ~ 01:06:27 UTC
Fetching request 8 of 14 (1993-07-16 to 1993-08-12) ~ 01:06:31 UTC
Fetching request 9 of 14 (1993-08-13 to 1993-09-09) ~ 01:06:35 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/7da68a000604ca9966032cbdb0c77bce.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/7da68a000604ca9966032cbdb0c77bce.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/7da68a000604ca9966032cbdb0c77bce.nc (return_on_error= FALSE )
RETRYing...
Fetching request 10 of 14 (1993-09-10 to 1993-10-07) ~ 01:06:40 UTC
Fetching request 11 of 14 (1993-10-08 to 1993-11-04) ~ 01:06:45 UTC
Fetching request 12 of 14 (1993-11-05 to 1993-12-02) ~ 01:06:49 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1993_nc/2c8f576495cac8cdf45ce3fe9133bfbe.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1994-01-01 to 1994-01-28) ~ 01:06:57 UTC
Fetching request 2 of 14 (1994-01-29 to 1994-02-25) ~ 01:07:01 UTC
Fetching request 3 of 14 (1994-02-26 to 1994-03-25) ~ 01:07:06 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1994_nc/2c330313b750537e0417e5d261f925cc.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1995-01-01 to 1995-01-28) ~ 01:07:13 UTC
Fetching request 2 of 14 (1995-01-29 to 1995-02-25) ~ 01:07:20 UTC
Fetching request 3 of 14 (1995-02-26 to 1995-03-25) ~ 01:07:26 UTC
Fetching request 4 of 14 (1995-03-26 to 1995-04-22) ~ 01:07:32 UTC
Fetching request 5 of 14 (1995-04-23 to 1995-05-20) ~ 01:07:38 UTC
Fetching request 6 of 14 (1995-05-21 to 1995-06-17) ~ 01:07:43 UTC
Fetching request 7 of 14 (1995-06-18 to 1995-07-15) ~ 01:07:47 UTC
Fetching request 8 of 14 (1995-07-16 to 1995-08-12) ~ 01:07:51 UTC
Fetching request 9 of 14 (1995-08-13 to 1995-09-09) ~ 01:07:57 UTC
Fetching request 10 of 14 (1995-09-10 to 1995-10-07) ~ 01:08:01 UTC
Fetching request 11 of 14 (1995-10-08 to 1995-11-04) ~ 01:08:05 UTC
Fetching request 12 of 14 (1995-11-05 to 1995-12-02) ~ 01:08:11 UTC
Fetching request 13 of 14 (1995-12-03 to 1995-12-30) ~ 01:08:15 UTC
Fetching request 14 of 14 (1995-12-31 to 1995-12-31) ~ 01:08:19 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1996-01-01 to 1996-01-28) ~ 01:08:25 UTC
Fetching request 2 of 14 (1996-01-29 to 1996-02-25) ~ 01:08:26 UTC
Fetching request 3 of 14 (1996-02-26 to 1996-03-24) ~ 01:08:28 UTC
Fetching request 4 of 14 (1996-03-25 to 1996-04-21) ~ 01:08:32 UTC
Fetching request 5 of 14 (1996-04-22 to 1996-05-19) ~ 01:08:36 UTC
Fetching request 6 of 14 (1996-05-20 to 1996-06-16) ~ 01:08:41 UTC
Fetching request 7 of 14 (1996-06-17 to 1996-07-14) ~ 01:08:46 UTC
Fetching request 8 of 14 (1996-07-15 to 1996-08-11) ~ 01:08:51 UTC
Fetching request 9 of 14 (1996-08-12 to 1996-09-08) ~ 01:08:57 UTC
Fetching request 10 of 14 (1996-09-09 to 1996-10-06) ~ 01:09:03 UTC
Fetching request 11 of 14 (1996-10-07 to 1996-11-03) ~ 01:09:08 UTC
Fetching request 12 of 14 (1996-11-04 to 1996-12-01) ~ 01:09:13 UTC
Fetching request 13 of 14 (1996-12-02 to 1996-12-29) ~ 01:09:18 UTC
Fetching request 14 of 14 (1996-12-30 to 1996-12-31) ~ 01:09:23 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1997-01-01 to 1997-01-28) ~ 01:09:29 UTC
Fetching request 2 of 14 (1997-01-29 to 1997-02-25) ~ 01:09:32 UTC
Fetching request 3 of 14 (1997-02-26 to 1997-03-25) ~ 01:09:35 UTC
Fetching request 4 of 14 (1997-03-26 to 1997-04-22) ~ 01:09:38 UTC
Fetching request 5 of 14 (1997-04-23 to 1997-05-20) ~ 01:09:41 UTC
Fetching request 6 of 14 (1997-05-21 to 1997-06-17) ~ 01:09:44 UTC
Fetching request 7 of 14 (1997-06-18 to 1997-07-15) ~ 01:09:48 UTC
Fetching request 8 of 14 (1997-07-16 to 1997-08-12) ~ 01:09:51 UTC
Fetching request 9 of 14 (1997-08-13 to 1997-09-09) ~ 01:09:54 UTC
Fetching request 10 of 14 (1997-09-10 to 1997-10-07) ~ 01:09:57 UTC
Fetching request 11 of 14 (1997-10-08 to 1997-11-04) ~ 01:10:01 UTC
Fetching request 12 of 14 (1997-11-05 to 1997-12-02) ~ 01:10:05 UTC
Fetching request 13 of 14 (1997-12-03 to 1997-12-30) ~ 01:10:08 UTC
Fetching request 14 of 14 (1997-12-31 to 1997-12-31) ~ 01:10:13 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1998-01-01 to 1998-01-28) ~ 01:10:20 UTC
Fetching request 2 of 14 (1998-01-29 to 1998-02-25) ~ 01:10:20 UTC
Fetching request 3 of 14 (1998-02-26 to 1998-03-25) ~ 01:10:20 UTC
Fetching request 4 of 14 (1998-03-26 to 1998-04-22) ~ 01:10:20 UTC
Fetching request 5 of 14 (1998-04-23 to 1998-05-20) ~ 01:10:21 UTC
Fetching request 6 of 14 (1998-05-21 to 1998-06-17) ~ 01:10:21 UTC
Fetching request 7 of 14 (1998-06-18 to 1998-07-15) ~ 01:10:21 UTC
Fetching request 8 of 14 (1998-07-16 to 1998-08-12) ~ 01:10:21 UTC
Fetching request 9 of 14 (1998-08-13 to 1998-09-09) ~ 01:10:26 UTC
Fetching request 10 of 14 (1998-09-10 to 1998-10-07) ~ 01:10:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/1998_nc/4f0880c9bc99dd5eb42946346183c3fc.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (1999-01-01 to 1999-01-28) ~ 01:10:44 UTC
Fetching request 2 of 14 (1999-01-29 to 1999-02-25) ~ 01:11:22 UTC
Fetching request 3 of 14 (1999-02-26 to 1999-03-25) ~ 01:11:37 UTC
Fetching request 4 of 14 (1999-03-26 to 1999-04-22) ~ 01:11:46 UTC
Fetching request 5 of 14 (1999-04-23 to 1999-05-20) ~ 01:11:52 UTC
Fetching request 6 of 14 (1999-05-21 to 1999-06-17) ~ 01:11:59 UTC
Fetching request 7 of 14 (1999-06-18 to 1999-07-15) ~ 01:12:04 UTC
Fetching request 8 of 14 (1999-07-16 to 1999-08-12) ~ 01:12:20 UTC
Fetching request 9 of 14 (1999-08-13 to 1999-09-09) ~ 01:12:25 UTC
Fetching request 10 of 14 (1999-09-10 to 1999-10-07) ~ 01:12:32 UTC
Fetching request 11 of 14 (1999-10-08 to 1999-11-04) ~ 01:12:38 UTC
Fetching request 12 of 14 (1999-11-05 to 1999-12-02) ~ 01:12:44 UTC
Fetching request 13 of 14 (1999-12-03 to 1999-12-30) ~ 01:12:49 UTC
Fetching request 14 of 14 (1999-12-31 to 1999-12-31) ~ 01:12:54 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2000-01-01 to 2000-01-28) ~ 01:12:59 UTC
Fetching request 2 of 14 (2000-01-29 to 2000-02-25) ~ 01:13:00 UTC
Fetching request 3 of 14 (2000-02-26 to 2000-03-24) ~ 01:13:00 UTC
Fetching request 4 of 14 (2000-03-25 to 2000-04-21) ~ 01:13:00 UTC
Fetching request 5 of 14 (2000-04-22 to 2000-05-19) ~ 01:13:00 UTC
Fetching request 6 of 14 (2000-05-20 to 2000-06-16) ~ 01:13:01 UTC
Fetching request 7 of 14 (2000-06-17 to 2000-07-14) ~ 01:13:01 UTC
Fetching request 8 of 14 (2000-07-15 to 2000-08-11) ~ 01:13:01 UTC
Fetching request 9 of 14 (2000-08-12 to 2000-09-08) ~ 01:13:01 UTC
Fetching request 10 of 14 (2000-09-09 to 2000-10-06) ~ 01:13:04 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2000_nc/864de473c300240eff57c8c83ab251e0.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2001-01-01 to 2001-01-28) ~ 01:13:12 UTC
Fetching request 2 of 14 (2001-01-29 to 2001-02-25) ~ 01:13:19 UTC
Fetching request 3 of 14 (2001-02-26 to 2001-03-25) ~ 01:13:24 UTC
Fetching request 4 of 14 (2001-03-26 to 2001-04-22) ~ 01:13:29 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/73bc6537f4aada898fd5025a5fa49577.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/73bc6537f4aada898fd5025a5fa49577.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/73bc6537f4aada898fd5025a5fa49577.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 14 (2001-04-23 to 2001-05-20) ~ 01:13:35 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2001_nc/7710dea9a87b6db2fa016b4de09abfeb.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2002-01-01 to 2002-01-28) ~ 01:13:43 UTC
Fetching request 2 of 14 (2002-01-29 to 2002-02-25) ~ 01:13:50 UTC
Fetching request 3 of 14 (2002-02-26 to 2002-03-25) ~ 01:13:56 UTC
Fetching request 4 of 14 (2002-03-26 to 2002-04-22) ~ 01:14:01 UTC
Fetching request 5 of 14 (2002-04-23 to 2002-05-20) ~ 01:14:07 UTC
Fetching request 6 of 14 (2002-05-21 to 2002-06-17) ~ 01:14:13 UTC
Fetching request 7 of 14 (2002-06-18 to 2002-07-15) ~ 01:14:17 UTC
Fetching request 8 of 14 (2002-07-16 to 2002-08-12) ~ 01:14:22 UTC
Fetching request 9 of 14 (2002-08-13 to 2002-09-09) ~ 01:14:26 UTC
Fetching request 10 of 14 (2002-09-10 to 2002-10-07) ~ 01:14:31 UTC
Fetching request 11 of 14 (2002-10-08 to 2002-11-04) ~ 01:14:43 UTC
Fetching request 12 of 14 (2002-11-05 to 2002-12-02) ~ 01:14:47 UTC
Fetching request 13 of 14 (2002-12-03 to 2002-12-30) ~ 01:14:51 UTC
Fetching request 14 of 14 (2002-12-31 to 2002-12-31) ~ 01:14:56 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2003-01-01 to 2003-01-28) ~ 01:15:02 UTC
Fetching request 2 of 14 (2003-01-29 to 2003-02-25) ~ 01:15:02 UTC
Fetching request 3 of 14 (2003-02-26 to 2003-03-25) ~ 01:15:03 UTC
Fetching request 4 of 14 (2003-03-26 to 2003-04-22) ~ 01:15:08 UTC
Fetching request 5 of 14 (2003-04-23 to 2003-05-20) ~ 01:15:12 UTC
Fetching request 6 of 14 (2003-05-21 to 2003-06-17) ~ 01:15:16 UTC
Fetching request 7 of 14 (2003-06-18 to 2003-07-15) ~ 01:15:20 UTC
Fetching request 8 of 14 (2003-07-16 to 2003-08-12) ~ 01:15:25 UTC
Fetching request 9 of 14 (2003-08-13 to 2003-09-09) ~ 01:15:31 UTC
Fetching request 10 of 14 (2003-09-10 to 2003-10-07) ~ 01:15:36 UTC
Fetching request 11 of 14 (2003-10-08 to 2003-11-04) ~ 01:15:41 UTC
Fetching request 12 of 14 (2003-11-05 to 2003-12-02) ~ 01:15:47 UTC
Fetching request 13 of 14 (2003-12-03 to 2003-12-30) ~ 01:15:52 UTC
Fetching request 14 of 14 (2003-12-31 to 2003-12-31) ~ 01:15:58 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2004-01-01 to 2004-01-28) ~ 01:16:04 UTC
Fetching request 2 of 14 (2004-01-29 to 2004-02-25) ~ 01:16:04 UTC
Fetching request 3 of 14 (2004-02-26 to 2004-03-24) ~ 01:16:05 UTC
Fetching request 4 of 14 (2004-03-25 to 2004-04-21) ~ 01:16:05 UTC
Fetching request 5 of 14 (2004-04-22 to 2004-05-19) ~ 01:16:05 UTC
Fetching request 6 of 14 (2004-05-20 to 2004-06-16) ~ 01:16:05 UTC
Fetching request 7 of 14 (2004-06-17 to 2004-07-14) ~ 01:16:05 UTC
Fetching request 8 of 14 (2004-07-15 to 2004-08-11) ~ 01:16:06 UTC
Fetching request 9 of 14 (2004-08-12 to 2004-09-08) ~ 01:16:25 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2004_nc/6d8588e0e1d7207b1fe1a57038a9ec9c.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2005-01-01 to 2005-01-28) ~ 01:16:32 UTC
Fetching request 2 of 14 (2005-01-29 to 2005-02-25) ~ 01:16:40 UTC
Fetching request 3 of 14 (2005-02-26 to 2005-03-25) ~ 01:16:46 UTC
Fetching request 4 of 14 (2005-03-26 to 2005-04-22) ~ 01:16:51 UTC
Fetching request 5 of 14 (2005-04-23 to 2005-05-20) ~ 01:16:56 UTC
Fetching request 6 of 14 (2005-05-21 to 2005-06-17) ~ 01:17:00 UTC
Fetching request 7 of 14 (2005-06-18 to 2005-07-15) ~ 01:17:04 UTC
Fetching request 8 of 14 (2005-07-16 to 2005-08-12) ~ 01:17:10 UTC
Fetching request 9 of 14 (2005-08-13 to 2005-09-09) ~ 01:17:16 UTC
Fetching request 10 of 14 (2005-09-10 to 2005-10-07) ~ 01:17:21 UTC
Fetching request 11 of 14 (2005-10-08 to 2005-11-04) ~ 01:17:26 UTC
Fetching request 12 of 14 (2005-11-05 to 2005-12-02) ~ 01:17:32 UTC
Fetching request 13 of 14 (2005-12-03 to 2005-12-30) ~ 01:17:37 UTC
Fetching request 14 of 14 (2005-12-31 to 2005-12-31) ~ 01:17:42 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2006-01-01 to 2006-01-28) ~ 01:17:49 UTC
Fetching request 2 of 14 (2006-01-29 to 2006-02-25) ~ 01:17:49 UTC
Fetching request 3 of 14 (2006-02-26 to 2006-03-25) ~ 01:17:49 UTC
Fetching request 4 of 14 (2006-03-26 to 2006-04-22) ~ 01:17:50 UTC
Fetching request 5 of 14 (2006-04-23 to 2006-05-20) ~ 01:17:50 UTC
Fetching request 6 of 14 (2006-05-21 to 2006-06-17) ~ 01:17:50 UTC
Fetching request 7 of 14 (2006-06-18 to 2006-07-15) ~ 01:17:50 UTC
Fetching request 8 of 14 (2006-07-16 to 2006-08-12) ~ 01:17:50 UTC
Fetching request 9 of 14 (2006-08-13 to 2006-09-09) ~ 01:17:52 UTC
Fetching request 10 of 14 (2006-09-10 to 2006-10-07) ~ 01:17:55 UTC
Fetching request 11 of 14 (2006-10-08 to 2006-11-04) ~ 01:18:00 UTC
Fetching request 12 of 14 (2006-11-05 to 2006-12-02) ~ 01:18:05 UTC
Fetching request 13 of 14 (2006-12-03 to 2006-12-30) ~ 01:18:09 UTC
Fetching request 14 of 14 (2006-12-31 to 2006-12-31) ~ 01:18:14 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2007-01-01 to 2007-01-28) ~ 01:18:20 UTC
Fetching request 2 of 14 (2007-01-29 to 2007-02-25) ~ 01:18:21 UTC
Fetching request 3 of 14 (2007-02-26 to 2007-03-25) ~ 01:18:21 UTC
Fetching request 4 of 14 (2007-03-26 to 2007-04-22) ~ 01:18:24 UTC
Fetching request 5 of 14 (2007-04-23 to 2007-05-20) ~ 01:18:28 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2007_nc/30f9d101c87396825ca95b7a13894fae.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2008-01-01 to 2008-01-28) ~ 01:18:35 UTC
Fetching request 2 of 14 (2008-01-29 to 2008-02-25) ~ 01:18:40 UTC
Fetching request 3 of 14 (2008-02-26 to 2008-03-24) ~ 01:18:46 UTC
Fetching request 4 of 14 (2008-03-25 to 2008-04-21) ~ 01:18:51 UTC
Fetching request 5 of 14 (2008-04-22 to 2008-05-19) ~ 01:18:55 UTC
Fetching request 6 of 14 (2008-05-20 to 2008-06-16) ~ 01:18:59 UTC
Fetching request 7 of 14 (2008-06-17 to 2008-07-14) ~ 01:19:04 UTC
Fetching request 8 of 14 (2008-07-15 to 2008-08-11) ~ 01:19:09 UTC
Fetching request 9 of 14 (2008-08-12 to 2008-09-08) ~ 01:19:12 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2008_nc/a284034aa930cfc4390a18ea4522d452.nc (return_on_error= FALSE )
RETRYing...
Fetching request 10 of 14 (2008-09-09 to 2008-10-06) ~ 01:19:19 UTC
Fetching request 11 of 14 (2008-10-07 to 2008-11-03) ~ 01:19:22 UTC
Fetching request 12 of 14 (2008-11-04 to 2008-12-01) ~ 01:19:26 UTC
Fetching request 13 of 14 (2008-12-02 to 2008-12-29) ~ 01:19:31 UTC
Fetching request 14 of 14 (2008-12-30 to 2008-12-31) ~ 01:19:35 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2009-01-01 to 2009-01-28) ~ 01:19:41 UTC
Fetching request 2 of 14 (2009-01-29 to 2009-02-25) ~ 01:19:42 UTC
Fetching request 3 of 14 (2009-02-26 to 2009-03-25) ~ 01:19:46 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2009_nc/04499a3636fc7a01f5f9c01e0d764173.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2010-01-01 to 2010-01-28) ~ 01:19:53 UTC
Fetching request 2 of 14 (2010-01-29 to 2010-02-25) ~ 01:19:59 UTC
Fetching request 3 of 14 (2010-02-26 to 2010-03-25) ~ 01:20:05 UTC
Fetching request 4 of 14 (2010-03-26 to 2010-04-22) ~ 01:20:27 UTC
Fetching request 5 of 14 (2010-04-23 to 2010-05-20) ~ 01:20:43 UTC
Fetching request 6 of 14 (2010-05-21 to 2010-06-17) ~ 01:20:57 UTC
Fetching request 7 of 14 (2010-06-18 to 2010-07-15) ~ 01:21:08 UTC
Fetching request 8 of 14 (2010-07-16 to 2010-08-12) ~ 01:21:20 UTC
Fetching request 9 of 14 (2010-08-13 to 2010-09-09) ~ 01:21:30 UTC
Fetching request 10 of 14 (2010-09-10 to 2010-10-07) ~ 01:21:44 UTC
Fetching request 11 of 14 (2010-10-08 to 2010-11-04) ~ 01:21:51 UTC
Fetching request 12 of 14 (2010-11-05 to 2010-12-02) ~ 01:21:55 UTC
Fetching request 13 of 14 (2010-12-03 to 2010-12-30) ~ 01:21:59 UTC
Fetching request 14 of 14 (2010-12-31 to 2010-12-31) ~ 01:22:05 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2011-01-01 to 2011-01-28) ~ 01:22:11 UTC
Fetching request 2 of 14 (2011-01-29 to 2011-02-25) ~ 01:22:11 UTC
Fetching request 3 of 14 (2011-02-26 to 2011-03-25) ~ 01:22:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2011_nc/02d086bada6cbde82407ad4af5e10ae8.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2012-01-01 to 2012-01-28) ~ 01:22:20 UTC
Fetching request 2 of 14 (2012-01-29 to 2012-02-25) ~ 01:22:27 UTC
Fetching request 3 of 14 (2012-02-26 to 2012-03-24) ~ 01:22:37 UTC
Fetching request 4 of 14 (2012-03-25 to 2012-04-21) ~ 01:22:45 UTC
Fetching request 5 of 14 (2012-04-22 to 2012-05-19) ~ 01:22:53 UTC
Fetching request 6 of 14 (2012-05-20 to 2012-06-16) ~ 01:23:00 UTC
Fetching request 7 of 14 (2012-06-17 to 2012-07-14) ~ 01:23:06 UTC
Fetching request 8 of 14 (2012-07-15 to 2012-08-11) ~ 01:23:12 UTC
Fetching request 9 of 14 (2012-08-12 to 2012-09-08) ~ 01:23:18 UTC
Fetching request 10 of 14 (2012-09-09 to 2012-10-06) ~ 01:23:23 UTC
Fetching request 11 of 14 (2012-10-07 to 2012-11-03) ~ 01:23:31 UTC
Fetching request 12 of 14 (2012-11-04 to 2012-12-01) ~ 01:23:39 UTC
Fetching request 13 of 14 (2012-12-02 to 2012-12-29) ~ 01:23:44 UTC
Fetching request 14 of 14 (2012-12-30 to 2012-12-31) ~ 01:23:48 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2013-01-01 to 2013-01-28) ~ 01:23:55 UTC
Fetching request 2 of 14 (2013-01-29 to 2013-02-25) ~ 01:23:55 UTC
Fetching request 3 of 14 (2013-02-26 to 2013-03-25) ~ 01:23:56 UTC
Fetching request 4 of 14 (2013-03-26 to 2013-04-22) ~ 01:23:58 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2013_nc/6e7e47b7f9786e37f1b1420f12d104b6.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2014-01-01 to 2014-01-28) ~ 01:24:06 UTC
Fetching request 2 of 14 (2014-01-29 to 2014-02-25) ~ 01:24:11 UTC
Fetching request 3 of 14 (2014-02-26 to 2014-03-25) ~ 01:24:16 UTC
Fetching request 4 of 14 (2014-03-26 to 2014-04-22) ~ 01:24:20 UTC
Fetching request 5 of 14 (2014-04-23 to 2014-05-20) ~ 01:24:24 UTC
Fetching request 6 of 14 (2014-05-21 to 2014-06-17) ~ 01:24:27 UTC
Fetching request 7 of 14 (2014-06-18 to 2014-07-15) ~ 01:24:32 UTC
Fetching request 8 of 14 (2014-07-16 to 2014-08-12) ~ 01:24:37 UTC
Fetching request 9 of 14 (2014-08-13 to 2014-09-09) ~ 01:24:41 UTC
Fetching request 10 of 14 (2014-09-10 to 2014-10-07) ~ 01:24:46 UTC
Fetching request 11 of 14 (2014-10-08 to 2014-11-04) ~ 01:24:49 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2014_nc/7221629acd7d9e215df771f583035ecd.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2014_nc/7221629acd7d9e215df771f583035ecd.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2014_nc/7221629acd7d9e215df771f583035ecd.nc (return_on_error= FALSE )
RETRYing...
Fetching request 12 of 14 (2014-11-05 to 2014-12-02) ~ 01:24:55 UTC
Fetching request 13 of 14 (2014-12-03 to 2014-12-30) ~ 01:24:59 UTC
Fetching request 14 of 14 (2014-12-31 to 2014-12-31) ~ 01:25:02 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2015-01-01 to 2015-01-28) ~ 01:25:09 UTC
Fetching request 2 of 14 (2015-01-29 to 2015-02-25) ~ 01:25:10 UTC
Fetching request 3 of 14 (2015-02-26 to 2015-03-25) ~ 01:25:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2015_nc/5a3b429f66c3811291da0295f741cc5c.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2016-01-01 to 2016-01-28) ~ 01:25:31 UTC
Fetching request 2 of 14 (2016-01-29 to 2016-02-25) ~ 01:26:06 UTC
Fetching request 3 of 14 (2016-02-26 to 2016-03-24) ~ 01:26:40 UTC
Fetching request 4 of 14 (2016-03-25 to 2016-04-21) ~ 01:27:02 UTC
Fetching request 5 of 14 (2016-04-22 to 2016-05-19) ~ 01:27:06 UTC
Fetching request 6 of 14 (2016-05-20 to 2016-06-16) ~ 01:27:12 UTC
Fetching request 7 of 14 (2016-06-17 to 2016-07-14) ~ 01:27:18 UTC
Fetching request 8 of 14 (2016-07-15 to 2016-08-11) ~ 01:27:26 UTC
Fetching request 9 of 14 (2016-08-12 to 2016-09-08) ~ 01:27:36 UTC
Fetching request 10 of 14 (2016-09-09 to 2016-10-06) ~ 01:27:44 UTC
Fetching request 11 of 14 (2016-10-07 to 2016-11-03) ~ 01:27:50 UTC
Fetching request 12 of 14 (2016-11-04 to 2016-12-01) ~ 01:27:57 UTC
Fetching request 13 of 14 (2016-12-02 to 2016-12-29) ~ 01:28:03 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2016_nc/a9b2811d158398d18a38f376cc6e47b3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2016_nc/a9b2811d158398d18a38f376cc6e47b3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2016_nc/a9b2811d158398d18a38f376cc6e47b3.nc (return_on_error= FALSE )
RETRYing...
Fetching request 14 of 14 (2016-12-30 to 2016-12-31) ~ 01:28:09 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2017-01-01 to 2017-01-28) ~ 01:28:15 UTC
Fetching request 2 of 14 (2017-01-29 to 2017-02-25) ~ 01:28:19 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2017_nc/357a685ebf79358073204a45275d8fd6.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2018-01-01 to 2018-01-28) ~ 01:28:27 UTC
Fetching request 2 of 14 (2018-01-29 to 2018-02-25) ~ 01:28:33 UTC
Fetching request 3 of 14 (2018-02-26 to 2018-03-25) ~ 01:28:38 UTC
Fetching request 4 of 14 (2018-03-26 to 2018-04-22) ~ 01:28:43 UTC
Fetching request 5 of 14 (2018-04-23 to 2018-05-20) ~ 01:28:48 UTC
Fetching request 6 of 14 (2018-05-21 to 2018-06-17) ~ 01:28:52 UTC
Fetching request 7 of 14 (2018-06-18 to 2018-07-15) ~ 01:28:58 UTC
Fetching request 8 of 14 (2018-07-16 to 2018-08-12) ~ 01:29:03 UTC
Fetching request 9 of 14 (2018-08-13 to 2018-09-09) ~ 01:29:08 UTC
Fetching request 10 of 14 (2018-09-10 to 2018-10-07) ~ 01:29:13 UTC
Fetching request 11 of 14 (2018-10-08 to 2018-11-04) ~ 01:29:18 UTC
Fetching request 12 of 14 (2018-11-05 to 2018-12-02) ~ 01:29:22 UTC
Fetching request 13 of 14 (2018-12-03 to 2018-12-30) ~ 01:29:27 UTC
Fetching request 14 of 14 (2018-12-31 to 2018-12-31) ~ 01:29:31 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2019-01-01 to 2019-01-28) ~ 01:29:37 UTC
Fetching request 2 of 14 (2019-01-29 to 2019-02-25) ~ 01:29:38 UTC
Fetching request 3 of 14 (2019-02-26 to 2019-03-25) ~ 01:29:40 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2019_nc/7f2408c4cda5094245929058fac7f0ec.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2020-01-01 to 2020-01-28) ~ 01:29:48 UTC
Fetching request 2 of 14 (2020-01-29 to 2020-02-25) ~ 01:29:54 UTC
Fetching request 3 of 14 (2020-02-26 to 2020-03-24) ~ 01:30:00 UTC
Fetching request 4 of 14 (2020-03-25 to 2020-04-21) ~ 01:30:05 UTC
Fetching request 5 of 14 (2020-04-22 to 2020-05-19) ~ 01:30:11 UTC
Fetching request 6 of 14 (2020-05-20 to 2020-06-16) ~ 01:30:16 UTC
Fetching request 7 of 14 (2020-06-17 to 2020-07-14) ~ 01:30:22 UTC
Fetching request 8 of 14 (2020-07-15 to 2020-08-11) ~ 01:30:28 UTC
Fetching request 9 of 14 (2020-08-12 to 2020-09-08) ~ 01:30:36 UTC
Fetching request 10 of 14 (2020-09-09 to 2020-10-06) ~ 01:30:42 UTC
Fetching request 11 of 14 (2020-10-07 to 2020-11-03) ~ 01:30:46 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/7d75efde49f279a97acfba646b9c93e6.nc (return_on_error= FALSE )
RETRYing...
Fetching request 12 of 14 (2020-11-04 to 2020-12-01) ~ 01:30:53 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2020_nc/9eeb693bf4b7932b2083cbd58172896c.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2021-01-01 to 2021-01-28) ~ 01:31:00 UTC
Fetching request 2 of 14 (2021-01-29 to 2021-02-25) ~ 01:31:07 UTC
Fetching request 3 of 14 (2021-02-26 to 2021-03-25) ~ 01:31:12 UTC
Fetching request 4 of 14 (2021-03-26 to 2021-04-22) ~ 01:31:17 UTC
Fetching request 5 of 14 (2021-04-23 to 2021-05-20) ~ 01:31:22 UTC
Fetching request 6 of 14 (2021-05-21 to 2021-06-17) ~ 01:31:28 UTC
Fetching request 7 of 14 (2021-06-18 to 2021-07-15) ~ 01:31:37 UTC
Fetching request 8 of 14 (2021-07-16 to 2021-08-12) ~ 01:31:44 UTC
Fetching request 9 of 14 (2021-08-13 to 2021-09-09) ~ 01:31:50 UTC
Fetching request 10 of 14 (2021-09-10 to 2021-10-07) ~ 01:31:59 UTC
Fetching request 11 of 14 (2021-10-08 to 2021-11-04) ~ 01:32:11 UTC
Fetching request 12 of 14 (2021-11-05 to 2021-12-02) ~ 01:32:21 UTC
Fetching request 13 of 14 (2021-12-03 to 2021-12-30) ~ 01:32:28 UTC
Fetching request 14 of 14 (2021-12-31 to 2021-12-31) ~ 01:32:35 UTC
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2022-01-01 to 2022-01-28) ~ 01:32:42 UTC
Fetching request 2 of 14 (2022-01-29 to 2022-02-25) ~ 01:32:42 UTC
Fetching request 3 of 14 (2022-02-26 to 2022-03-25) ~ 01:32:42 UTC
Fetching request 4 of 14 (2022-03-26 to 2022-04-22) ~ 01:32:42 UTC
Fetching request 5 of 14 (2022-04-23 to 2022-05-20) ~ 01:32:43 UTC
Fetching request 6 of 14 (2022-05-21 to 2022-06-17) ~ 01:32:43 UTC
Fetching request 7 of 14 (2022-06-18 to 2022-07-15) ~ 01:32:43 UTC
Fetching request 8 of 14 (2022-07-16 to 2022-08-12) ~ 01:32:43 UTC
Fetching request 9 of 14 (2022-08-13 to 2022-09-09) ~ 01:32:43 UTC
Fetching request 10 of 14 (2022-09-10 to 2022-10-07) ~ 01:32:44 UTC
Fetching request 11 of 14 (2022-10-08 to 2022-11-04) ~ 01:32:44 UTC
Fetching request 12 of 14 (2022-11-05 to 2022-12-02) ~ 01:32:45 UTC
Fetching request 13 of 14 (2022-12-03 to 2022-12-30) ~ 01:32:51 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2022_nc/00c53a33fa8128b4475bb09fa4ed3021.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2023-01-01 to 2023-01-28) ~ 01:32:59 UTC
Fetching request 2 of 14 (2023-01-29 to 2023-02-25) ~ 01:33:05 UTC
Fetching request 3 of 14 (2023-02-26 to 2023-03-25) ~ 01:33:10 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2023_nc/4e34ee77375b5e13a67d9760fd19abf7.nc (return_on_error= FALSE )
Downloading 14 requests, up to 28 time slices each
Fetching request 1 of 14 (2024-01-01 to 2024-01-28) ~ 01:33:18 UTC
Fetching request 2 of 14 (2024-01-29 to 2024-02-25) ~ 01:33:25 UTC
Fetching request 3 of 14 (2024-02-26 to 2024-03-24) ~ 01:33:29 UTC
Fetching request 4 of 14 (2024-03-25 to 2024-04-21) ~ 01:33:34 UTC
Fetching request 5 of 14 (2024-04-22 to 2024-05-19) ~ 01:33:39 UTC
Fetching request 6 of 14 (2024-05-20 to 2024-06-16) ~ 01:33:44 UTC
Fetching request 7 of 14 (2024-06-17 to 2024-07-14) ~ 01:33:48 UTC
Fetching request 8 of 14 (2024-07-15 to 2024-08-11) ~ 01:33:54 UTC
Fetching request 9 of 14 (2024-08-12 to 2024-09-08) ~ 01:34:01 UTC
Fetching request 10 of 14 (2024-09-09 to 2024-10-07) ~ 01:34:06 UTC
Fetching request 11 of 14 (2024-10-08 to 2024-11-04) ~ 01:34:12 UTC
Fetching request 12 of 14 (2024-11-05 to 2024-12-02) ~ 01:34:17 UTC
Fetching request 13 of 14 (2024-12-03 to 2024-12-30) ~ 01:34:23 UTC
Fetching request 14 of 14 (2024-12-31 to 2024-12-31) ~ 01:34:32 UTC
Downloading 6 requests, up to 28 time slices each
Fetching request 1 of 6 (2025-01-01 to 2025-01-28) ~ 01:34:39 UTC
Fetching request 2 of 6 (2025-01-29 to 2025-02-25) ~ 01:34:39 UTC
Fetching request 3 of 6 (2025-02-26 to 2025-03-25) ~ 01:34:39 UTC
Fetching request 4 of 6 (2025-03-26 to 2025-04-22) ~ 01:34:47 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MBNMS-main/2025_nc/fda5efc632298addc536778dc8ce4628.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1985-01-01 to 1985-12-31) ~ 01:34:54 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1986-01-01 to 1986-12-31) ~ 01:35:51 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1987-01-01 to 1987-12-31) ~ 01:36:48 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1988-01-01 to 1988-12-31) ~ 01:37:53 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1989-01-01 to 1989-12-31) ~ 01:38:34 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1989_nc/50b7688f8c0c9a4d42cb6b49934b71b1.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1989_nc/50b7688f8c0c9a4d42cb6b49934b71b1.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1989_nc/50b7688f8c0c9a4d42cb6b49934b71b1.nc (return_on_error= FALSE )
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1990-01-01 to 1990-12-31) ~ 01:39:43 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1990_nc/d86c68c7522db9390345ac70a849c720.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1990_nc/d86c68c7522db9390345ac70a849c720.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1990_nc/d86c68c7522db9390345ac70a849c720.nc (return_on_error= FALSE )
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1991-01-01 to 1991-12-31) ~ 01:40:38 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1992-01-01 to 1992-12-31) ~ 01:41:43 UTC
Error : 

RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1993-01-01 to 1993-12-31) ~ 01:43:26 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1993_nc/82e24e9bd3d62b925629115961da2b6d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1993_nc/82e24e9bd3d62b925629115961da2b6d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/1993_nc/82e24e9bd3d62b925629115961da2b6d.nc (return_on_error= FALSE )
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1994-01-01 to 1994-12-31) ~ 01:44:38 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1995-01-01 to 1995-12-31) ~ 01:45:25 UTC
Error : 

RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1996-01-01 to 1996-12-31) ~ 01:47:18 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1997-01-01 to 1997-12-31) ~ 01:48:00 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1998-01-01 to 1998-12-31) ~ 01:49:00 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (1999-01-01 to 1999-12-31) ~ 01:49:34 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2000-01-01 to 2000-12-31) ~ 01:50:25 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2000_nc/2e47852f6568359ce757bf7fa53aa468.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2001-01-01 to 2001-12-31) ~ 01:50:33 UTC
Error : 

RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2001_nc/2fdec9118b4499089a862c8edf1b0880.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2001_nc/2fdec9118b4499089a862c8edf1b0880.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2001_nc/2fdec9118b4499089a862c8edf1b0880.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2001_nc/2fdec9118b4499089a862c8edf1b0880.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2002-01-01 to 2002-12-31) ~ 01:52:44 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2003-01-01 to 2003-12-31) ~ 01:53:55 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2004-01-01 to 2004-12-31) ~ 01:54:53 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2005-01-01 to 2005-12-31) ~ 01:55:52 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2005_nc/317ba98c605c706b15813f47a8002be3.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2006-01-01 to 2006-12-31) ~ 01:56:00 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2007-01-01 to 2007-12-31) ~ 01:56:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2007_nc/7582c27542772077b797037a0f4ccc6e.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2008-01-01 to 2008-12-31) ~ 01:57:53 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2009-01-01 to 2009-12-31) ~ 01:58:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2009_nc/b6ee5a6523c9b2e4e0f90808c102cccf.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2010-01-01 to 2010-12-31) ~ 01:58:59 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2010_nc/e149bc8ac60136ed71ec31aed8356d77.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2010_nc/e149bc8ac60136ed71ec31aed8356d77.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2010_nc/e149bc8ac60136ed71ec31aed8356d77.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2010_nc/e149bc8ac60136ed71ec31aed8356d77.nc (return_on_error= FALSE )
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2011-01-01 to 2011-12-31) ~ 02:00:18 UTC
Error : 

RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2012-01-01 to 2012-12-31) ~ 02:02:59 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2013-01-01 to 2013-12-31) ~ 02:04:20 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2014-01-01 to 2014-12-31) ~ 02:06:53 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2014_nc/e00e8871bda59eebd433b3f5bd2f58f5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2014_nc/e00e8871bda59eebd433b3f5bd2f58f5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2014_nc/e00e8871bda59eebd433b3f5bd2f58f5.nc (return_on_error= FALSE )
RETRYing...
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2015-01-01 to 2015-12-31) ~ 02:07:49 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2016-01-01 to 2016-12-31) ~ 02:08:29 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : 
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2017-01-01 to 2017-12-31) ~ 02:12:01 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2018-01-01 to 2018-12-31) ~ 02:12:55 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2019-01-01 to 2019-12-31) ~ 02:13:37 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2020-01-01 to 2020-12-31) ~ 02:14:37 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : 
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2021-01-01 to 2021-12-31) ~ 02:17:51 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2022-01-01 to 2022-12-31) ~ 02:18:37 UTC
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2023-01-01 to 2023-12-31) ~ 02:19:36 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : Proxy Error
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2024-01-01 to 2024-12-31) ~ 02:22:52 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : 
Downloading 1 requests, up to 420 time slices each
Fetching request 1 of 1 (2025-01-01 to 2025-06-11) ~ 02:26:10 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1985-01-01 to 1985-01-10) ~ 02:26:29 UTC
Fetching request 2 of 37 (1985-01-11 to 1985-01-20) ~ 02:26:31 UTC
Fetching request 3 of 37 (1985-01-21 to 1985-01-30) ~ 02:26:31 UTC
Fetching request 4 of 37 (1985-01-31 to 1985-02-09) ~ 02:26:31 UTC
Fetching request 5 of 37 (1985-02-10 to 1985-02-19) ~ 02:26:31 UTC
Fetching request 6 of 37 (1985-02-20 to 1985-03-01) ~ 02:26:32 UTC
Fetching request 7 of 37 (1985-03-02 to 1985-03-11) ~ 02:26:32 UTC
Fetching request 8 of 37 (1985-03-12 to 1985-03-21) ~ 02:26:32 UTC
Fetching request 9 of 37 (1985-03-22 to 1985-03-31) ~ 02:26:32 UTC
Fetching request 10 of 37 (1985-04-01 to 1985-04-10) ~ 02:26:33 UTC
Fetching request 11 of 37 (1985-04-11 to 1985-04-20) ~ 02:26:35 UTC
Fetching request 12 of 37 (1985-04-21 to 1985-04-30) ~ 02:26:37 UTC
Fetching request 13 of 37 (1985-05-01 to 1985-05-10) ~ 02:26:38 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/da2b9956241245929588f757f6919958.nc (return_on_error= FALSE )
RETRYing...
Fetching request 14 of 37 (1985-05-11 to 1985-05-20) ~ 02:26:41 UTC
Fetching request 15 of 37 (1985-05-21 to 1985-05-30) ~ 02:26:42 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/cf0f04903155f41e5ec11860c6e853be.nc (return_on_error= FALSE )
RETRYing...
Fetching request 16 of 37 (1985-05-31 to 1985-06-09) ~ 02:26:45 UTC
Fetching request 17 of 37 (1985-06-10 to 1985-06-19) ~ 02:26:46 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1985_nc/17cdfe5457aaaf151c27f07ec7c8b531.nc (return_on_error= FALSE )
RETRYing...
Fetching request 18 of 37 (1985-06-20 to 1985-06-29) ~ 02:26:48 UTC
Fetching request 19 of 37 (1985-06-30 to 1985-07-09) ~ 02:26:50 UTC
Fetching request 20 of 37 (1985-07-10 to 1985-07-19) ~ 02:26:53 UTC
Fetching request 21 of 37 (1985-07-20 to 1985-07-29) ~ 02:26:55 UTC
Fetching request 22 of 37 (1985-07-30 to 1985-08-08) ~ 02:26:57 UTC
Fetching request 23 of 37 (1985-08-09 to 1985-08-18) ~ 02:26:59 UTC
Fetching request 24 of 37 (1985-08-19 to 1985-08-28) ~ 02:27:01 UTC
Fetching request 25 of 37 (1985-08-29 to 1985-09-07) ~ 02:27:09 UTC
Fetching request 26 of 37 (1985-09-08 to 1985-09-17) ~ 02:27:22 UTC
Fetching request 27 of 37 (1985-09-18 to 1985-09-27) ~ 02:27:26 UTC
Fetching request 28 of 37 (1985-09-28 to 1985-10-07) ~ 02:27:31 UTC
Fetching request 29 of 37 (1985-10-08 to 1985-10-17) ~ 02:27:35 UTC
Fetching request 30 of 37 (1985-10-18 to 1985-10-27) ~ 02:27:38 UTC
Fetching request 31 of 37 (1985-10-28 to 1985-11-06) ~ 02:27:54 UTC
Fetching request 32 of 37 (1985-11-07 to 1985-11-16) ~ 02:27:58 UTC
Fetching request 33 of 37 (1985-11-17 to 1985-11-26) ~ 02:28:00 UTC
Fetching request 34 of 37 (1985-11-27 to 1985-12-06) ~ 02:28:04 UTC
Fetching request 35 of 37 (1985-12-07 to 1985-12-16) ~ 02:28:07 UTC
Fetching request 36 of 37 (1985-12-17 to 1985-12-26) ~ 02:28:09 UTC
Fetching request 37 of 37 (1985-12-27 to 1985-12-31) ~ 02:28:13 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1986-01-01 to 1986-01-10) ~ 02:28:20 UTC
Fetching request 2 of 37 (1986-01-11 to 1986-01-20) ~ 02:28:21 UTC
Fetching request 3 of 37 (1986-01-21 to 1986-01-30) ~ 02:28:21 UTC
Fetching request 4 of 37 (1986-01-31 to 1986-02-09) ~ 02:28:21 UTC
Fetching request 5 of 37 (1986-02-10 to 1986-02-19) ~ 02:28:21 UTC
Fetching request 6 of 37 (1986-02-20 to 1986-03-01) ~ 02:28:21 UTC
Fetching request 7 of 37 (1986-03-02 to 1986-03-11) ~ 02:28:22 UTC
Fetching request 8 of 37 (1986-03-12 to 1986-03-21) ~ 02:28:22 UTC
Fetching request 9 of 37 (1986-03-22 to 1986-03-31) ~ 02:28:22 UTC
Fetching request 10 of 37 (1986-04-01 to 1986-04-10) ~ 02:28:22 UTC
Fetching request 11 of 37 (1986-04-11 to 1986-04-20) ~ 02:28:22 UTC
Fetching request 12 of 37 (1986-04-21 to 1986-04-30) ~ 02:28:22 UTC
Fetching request 13 of 37 (1986-05-01 to 1986-05-10) ~ 02:28:23 UTC
Fetching request 14 of 37 (1986-05-11 to 1986-05-20) ~ 02:28:23 UTC
Fetching request 15 of 37 (1986-05-21 to 1986-05-30) ~ 02:28:23 UTC
Fetching request 16 of 37 (1986-05-31 to 1986-06-09) ~ 02:28:23 UTC
Fetching request 17 of 37 (1986-06-10 to 1986-06-19) ~ 02:28:23 UTC
Fetching request 18 of 37 (1986-06-20 to 1986-06-29) ~ 02:28:24 UTC
Fetching request 19 of 37 (1986-06-30 to 1986-07-09) ~ 02:28:24 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1986_nc/4d0da5fda299ddc11c1aad24bea9633f.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1987-01-01 to 1987-01-10) ~ 02:28:32 UTC
Fetching request 2 of 37 (1987-01-11 to 1987-01-20) ~ 02:28:35 UTC
Fetching request 3 of 37 (1987-01-21 to 1987-01-30) ~ 02:28:40 UTC
Fetching request 4 of 37 (1987-01-31 to 1987-02-09) ~ 02:28:43 UTC
Fetching request 5 of 37 (1987-02-10 to 1987-02-19) ~ 02:28:46 UTC
Fetching request 6 of 37 (1987-02-20 to 1987-03-01) ~ 02:28:48 UTC
Fetching request 7 of 37 (1987-03-02 to 1987-03-11) ~ 02:28:52 UTC
Fetching request 8 of 37 (1987-03-12 to 1987-03-21) ~ 02:28:57 UTC
Fetching request 9 of 37 (1987-03-22 to 1987-03-31) ~ 02:28:59 UTC
Fetching request 10 of 37 (1987-04-01 to 1987-04-10) ~ 02:29:03 UTC
Fetching request 11 of 37 (1987-04-11 to 1987-04-20) ~ 02:29:06 UTC
Fetching request 12 of 37 (1987-04-21 to 1987-04-30) ~ 02:29:10 UTC
Fetching request 13 of 37 (1987-05-01 to 1987-05-10) ~ 02:29:15 UTC
Fetching request 14 of 37 (1987-05-11 to 1987-05-20) ~ 02:29:17 UTC
Fetching request 15 of 37 (1987-05-21 to 1987-05-30) ~ 02:29:20 UTC
Fetching request 16 of 37 (1987-05-31 to 1987-06-09) ~ 02:29:24 UTC
Fetching request 17 of 37 (1987-06-10 to 1987-06-19) ~ 02:29:27 UTC
Fetching request 18 of 37 (1987-06-20 to 1987-06-29) ~ 02:29:30 UTC
Fetching request 19 of 37 (1987-06-30 to 1987-07-09) ~ 02:29:32 UTC
Fetching request 20 of 37 (1987-07-10 to 1987-07-19) ~ 02:29:35 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1987_nc/cc062a6fff0731adc072fe3def24d60c.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1988-01-01 to 1988-01-10) ~ 02:29:47 UTC
Fetching request 2 of 37 (1988-01-11 to 1988-01-20) ~ 02:29:50 UTC
Fetching request 3 of 37 (1988-01-21 to 1988-01-30) ~ 02:29:55 UTC
Fetching request 4 of 37 (1988-01-31 to 1988-02-09) ~ 02:29:58 UTC
Fetching request 5 of 37 (1988-02-10 to 1988-02-19) ~ 02:30:02 UTC
Fetching request 6 of 37 (1988-02-20 to 1988-02-29) ~ 02:30:05 UTC
Fetching request 7 of 37 (1988-03-01 to 1988-03-10) ~ 02:30:07 UTC
Fetching request 8 of 37 (1988-03-11 to 1988-03-20) ~ 02:30:11 UTC
Fetching request 9 of 37 (1988-03-21 to 1988-03-30) ~ 02:30:13 UTC
Fetching request 10 of 37 (1988-03-31 to 1988-04-09) ~ 02:30:17 UTC
Fetching request 11 of 37 (1988-04-10 to 1988-04-19) ~ 02:30:20 UTC
Fetching request 12 of 37 (1988-04-20 to 1988-04-29) ~ 02:30:32 UTC
Fetching request 13 of 37 (1988-04-30 to 1988-05-09) ~ 02:30:34 UTC
Fetching request 14 of 37 (1988-05-10 to 1988-05-19) ~ 02:30:36 UTC
Fetching request 15 of 37 (1988-05-20 to 1988-05-29) ~ 02:30:38 UTC
Fetching request 16 of 37 (1988-05-30 to 1988-06-08) ~ 02:30:43 UTC
Fetching request 17 of 37 (1988-06-09 to 1988-06-18) ~ 02:30:46 UTC
Fetching request 18 of 37 (1988-06-19 to 1988-06-28) ~ 02:30:48 UTC
Fetching request 19 of 37 (1988-06-29 to 1988-07-08) ~ 02:30:50 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/16071a625d423105ff123ffda299a24d.nc (return_on_error= FALSE )
RETRYing...
Fetching request 20 of 37 (1988-07-09 to 1988-07-18) ~ 02:30:55 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1988_nc/578e165857b346fefbf44b50394f9c96.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1989-01-01 to 1989-01-10) ~ 02:31:03 UTC
Fetching request 2 of 37 (1989-01-11 to 1989-01-20) ~ 02:31:05 UTC
Fetching request 3 of 37 (1989-01-21 to 1989-01-30) ~ 02:31:07 UTC
Fetching request 4 of 37 (1989-01-31 to 1989-02-09) ~ 02:31:09 UTC
Fetching request 5 of 37 (1989-02-10 to 1989-02-19) ~ 02:31:11 UTC
Fetching request 6 of 37 (1989-02-20 to 1989-03-01) ~ 02:31:14 UTC
Fetching request 7 of 37 (1989-03-02 to 1989-03-11) ~ 02:31:16 UTC
Fetching request 8 of 37 (1989-03-12 to 1989-03-21) ~ 02:31:17 UTC
Fetching request 9 of 37 (1989-03-22 to 1989-03-31) ~ 02:31:19 UTC
Fetching request 10 of 37 (1989-04-01 to 1989-04-10) ~ 02:31:22 UTC
Fetching request 11 of 37 (1989-04-11 to 1989-04-20) ~ 02:31:24 UTC
Fetching request 12 of 37 (1989-04-21 to 1989-04-30) ~ 02:31:27 UTC
Fetching request 13 of 37 (1989-05-01 to 1989-05-10) ~ 02:31:29 UTC
Fetching request 14 of 37 (1989-05-11 to 1989-05-20) ~ 02:31:31 UTC
Fetching request 15 of 37 (1989-05-21 to 1989-05-30) ~ 02:31:33 UTC
Fetching request 16 of 37 (1989-05-31 to 1989-06-09) ~ 02:31:35 UTC
Fetching request 17 of 37 (1989-06-10 to 1989-06-19) ~ 02:31:38 UTC
Fetching request 18 of 37 (1989-06-20 to 1989-06-29) ~ 02:31:40 UTC
Fetching request 19 of 37 (1989-06-30 to 1989-07-09) ~ 02:31:42 UTC
Fetching request 20 of 37 (1989-07-10 to 1989-07-19) ~ 02:31:45 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1989_nc/b27888b79c855cef2db43720db563010.nc (return_on_error= FALSE )
RETRYing...
Fetching request 21 of 37 (1989-07-20 to 1989-07-29) ~ 02:31:52 UTC
Fetching request 22 of 37 (1989-07-30 to 1989-08-08) ~ 02:32:01 UTC
Fetching request 23 of 37 (1989-08-09 to 1989-08-18) ~ 02:32:13 UTC
Fetching request 24 of 37 (1989-08-19 to 1989-08-28) ~ 02:32:16 UTC
Fetching request 25 of 37 (1989-08-29 to 1989-09-07) ~ 02:32:25 UTC
Fetching request 26 of 37 (1989-09-08 to 1989-09-17) ~ 02:32:28 UTC
Fetching request 27 of 37 (1989-09-18 to 1989-09-27) ~ 02:32:30 UTC
Fetching request 28 of 37 (1989-09-28 to 1989-10-07) ~ 02:32:32 UTC
Fetching request 29 of 37 (1989-10-08 to 1989-10-17) ~ 02:32:35 UTC
Fetching request 30 of 37 (1989-10-18 to 1989-10-27) ~ 02:32:37 UTC
Fetching request 31 of 37 (1989-10-28 to 1989-11-06) ~ 02:32:39 UTC
Fetching request 32 of 37 (1989-11-07 to 1989-11-16) ~ 02:32:48 UTC
Fetching request 33 of 37 (1989-11-17 to 1989-11-26) ~ 02:32:51 UTC
Fetching request 34 of 37 (1989-11-27 to 1989-12-06) ~ 02:32:54 UTC
Fetching request 35 of 37 (1989-12-07 to 1989-12-16) ~ 02:32:56 UTC
Fetching request 36 of 37 (1989-12-17 to 1989-12-26) ~ 02:32:58 UTC
Fetching request 37 of 37 (1989-12-27 to 1989-12-31) ~ 02:33:00 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1990-01-01 to 1990-01-10) ~ 02:33:07 UTC
Fetching request 2 of 37 (1990-01-11 to 1990-01-20) ~ 02:33:08 UTC
Fetching request 3 of 37 (1990-01-21 to 1990-01-30) ~ 02:33:08 UTC
Fetching request 4 of 37 (1990-01-31 to 1990-02-09) ~ 02:33:08 UTC
Fetching request 5 of 37 (1990-02-10 to 1990-02-19) ~ 02:33:08 UTC
Fetching request 6 of 37 (1990-02-20 to 1990-03-01) ~ 02:33:08 UTC
Fetching request 7 of 37 (1990-03-02 to 1990-03-11) ~ 02:33:09 UTC
Fetching request 8 of 37 (1990-03-12 to 1990-03-21) ~ 02:33:09 UTC
Fetching request 9 of 37 (1990-03-22 to 1990-03-31) ~ 02:33:09 UTC
Fetching request 10 of 37 (1990-04-01 to 1990-04-10) ~ 02:33:09 UTC
Fetching request 11 of 37 (1990-04-11 to 1990-04-20) ~ 02:33:09 UTC
Fetching request 12 of 37 (1990-04-21 to 1990-04-30) ~ 02:33:10 UTC
Fetching request 13 of 37 (1990-05-01 to 1990-05-10) ~ 02:33:10 UTC
Fetching request 14 of 37 (1990-05-11 to 1990-05-20) ~ 02:33:10 UTC
Fetching request 15 of 37 (1990-05-21 to 1990-05-30) ~ 02:33:11 UTC
Fetching request 16 of 37 (1990-05-31 to 1990-06-09) ~ 02:33:11 UTC
Fetching request 17 of 37 (1990-06-10 to 1990-06-19) ~ 02:33:11 UTC
Fetching request 18 of 37 (1990-06-20 to 1990-06-29) ~ 02:33:11 UTC
Fetching request 19 of 37 (1990-06-30 to 1990-07-09) ~ 02:33:11 UTC
Fetching request 20 of 37 (1990-07-10 to 1990-07-19) ~ 02:33:12 UTC
Fetching request 21 of 37 (1990-07-20 to 1990-07-29) ~ 02:33:12 UTC
Fetching request 22 of 37 (1990-07-30 to 1990-08-08) ~ 02:33:15 UTC
Fetching request 23 of 37 (1990-08-09 to 1990-08-18) ~ 02:33:27 UTC
Fetching request 24 of 37 (1990-08-19 to 1990-08-28) ~ 02:33:33 UTC
Fetching request 25 of 37 (1990-08-29 to 1990-09-07) ~ 02:33:35 UTC
Fetching request 26 of 37 (1990-09-08 to 1990-09-17) ~ 02:33:39 UTC
Fetching request 27 of 37 (1990-09-18 to 1990-09-27) ~ 02:33:50 UTC
Fetching request 28 of 37 (1990-09-28 to 1990-10-07) ~ 02:33:52 UTC
Fetching request 29 of 37 (1990-10-08 to 1990-10-17) ~ 02:33:55 UTC
Fetching request 30 of 37 (1990-10-18 to 1990-10-27) ~ 02:33:57 UTC
Fetching request 31 of 37 (1990-10-28 to 1990-11-06) ~ 02:33:58 UTC
Fetching request 32 of 37 (1990-11-07 to 1990-11-16) ~ 02:34:04 UTC
Fetching request 33 of 37 (1990-11-17 to 1990-11-26) ~ 02:34:06 UTC
Fetching request 34 of 37 (1990-11-27 to 1990-12-06) ~ 02:34:07 UTC
Fetching request 35 of 37 (1990-12-07 to 1990-12-16) ~ 02:34:10 UTC
Fetching request 36 of 37 (1990-12-17 to 1990-12-26) ~ 02:34:11 UTC
Fetching request 37 of 37 (1990-12-27 to 1990-12-31) ~ 02:34:14 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1991-01-01 to 1991-01-10) ~ 02:34:21 UTC
Fetching request 2 of 37 (1991-01-11 to 1991-01-20) ~ 02:34:21 UTC
Fetching request 3 of 37 (1991-01-21 to 1991-01-30) ~ 02:34:21 UTC
Fetching request 4 of 37 (1991-01-31 to 1991-02-09) ~ 02:34:21 UTC
Fetching request 5 of 37 (1991-02-10 to 1991-02-19) ~ 02:34:22 UTC
Fetching request 6 of 37 (1991-02-20 to 1991-03-01) ~ 02:34:22 UTC
Fetching request 7 of 37 (1991-03-02 to 1991-03-11) ~ 02:34:22 UTC
Fetching request 8 of 37 (1991-03-12 to 1991-03-21) ~ 02:34:22 UTC
Fetching request 9 of 37 (1991-03-22 to 1991-03-31) ~ 02:34:22 UTC
Fetching request 10 of 37 (1991-04-01 to 1991-04-10) ~ 02:34:23 UTC
Fetching request 11 of 37 (1991-04-11 to 1991-04-20) ~ 02:34:23 UTC
Fetching request 12 of 37 (1991-04-21 to 1991-04-30) ~ 02:34:23 UTC
Fetching request 13 of 37 (1991-05-01 to 1991-05-10) ~ 02:34:23 UTC
Fetching request 14 of 37 (1991-05-11 to 1991-05-20) ~ 02:34:23 UTC
Fetching request 15 of 37 (1991-05-21 to 1991-05-30) ~ 02:34:24 UTC
Fetching request 16 of 37 (1991-05-31 to 1991-06-09) ~ 02:34:24 UTC
Fetching request 17 of 37 (1991-06-10 to 1991-06-19) ~ 02:34:24 UTC
Fetching request 18 of 37 (1991-06-20 to 1991-06-29) ~ 02:34:24 UTC
Fetching request 19 of 37 (1991-06-30 to 1991-07-09) ~ 02:34:24 UTC
Fetching request 20 of 37 (1991-07-10 to 1991-07-19) ~ 02:34:25 UTC
Fetching request 21 of 37 (1991-07-20 to 1991-07-29) ~ 02:34:25 UTC
Fetching request 22 of 37 (1991-07-30 to 1991-08-08) ~ 02:34:28 UTC
Fetching request 23 of 37 (1991-08-09 to 1991-08-18) ~ 02:34:30 UTC
Fetching request 24 of 37 (1991-08-19 to 1991-08-28) ~ 02:34:32 UTC
Fetching request 25 of 37 (1991-08-29 to 1991-09-07) ~ 02:34:33 UTC
Fetching request 26 of 37 (1991-09-08 to 1991-09-17) ~ 02:34:35 UTC
Fetching request 27 of 37 (1991-09-18 to 1991-09-27) ~ 02:34:38 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/2e5266ccaaf7613f980e9ec40e383f71.nc (return_on_error= FALSE )
RETRYing...
Fetching request 28 of 37 (1991-09-28 to 1991-10-07) ~ 02:34:40 UTC
Fetching request 29 of 37 (1991-10-08 to 1991-10-17) ~ 02:34:51 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/1275145ec6e07f8aa6461b25cc0eade5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/1275145ec6e07f8aa6461b25cc0eade5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/1275145ec6e07f8aa6461b25cc0eade5.nc (return_on_error= FALSE )
RETRYing...
Fetching request 30 of 37 (1991-10-18 to 1991-10-27) ~ 02:34:52 UTC
Fetching request 31 of 37 (1991-10-28 to 1991-11-06) ~ 02:34:54 UTC
Fetching request 32 of 37 (1991-11-07 to 1991-11-16) ~ 02:35:00 UTC
Fetching request 33 of 37 (1991-11-17 to 1991-11-26) ~ 02:35:02 UTC
Fetching request 34 of 37 (1991-11-27 to 1991-12-06) ~ 02:35:14 UTC
Fetching request 35 of 37 (1991-12-07 to 1991-12-16) ~ 02:35:20 UTC
Fetching request 36 of 37 (1991-12-17 to 1991-12-26) ~ 02:35:22 UTC
Fetching request 37 of 37 (1991-12-27 to 1991-12-31) ~ 02:35:27 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/058579a8aa4d983b0929f1c374dbe53e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/058579a8aa4d983b0929f1c374dbe53e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1991_nc/058579a8aa4d983b0929f1c374dbe53e.nc (return_on_error= FALSE )
RETRYing...
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1992-01-01 to 1992-01-10) ~ 02:35:35 UTC
Fetching request 2 of 37 (1992-01-11 to 1992-01-20) ~ 02:35:41 UTC
Fetching request 3 of 37 (1992-01-21 to 1992-01-30) ~ 02:35:52 UTC
Fetching request 4 of 37 (1992-01-31 to 1992-02-09) ~ 02:35:54 UTC
Fetching request 5 of 37 (1992-02-10 to 1992-02-19) ~ 02:36:01 UTC
Fetching request 6 of 37 (1992-02-20 to 1992-02-29) ~ 02:36:03 UTC
Fetching request 7 of 37 (1992-03-01 to 1992-03-10) ~ 02:36:05 UTC
Fetching request 8 of 37 (1992-03-11 to 1992-03-20) ~ 02:36:08 UTC
Fetching request 9 of 37 (1992-03-21 to 1992-03-30) ~ 02:36:09 UTC
Fetching request 10 of 37 (1992-03-31 to 1992-04-09) ~ 02:36:11 UTC
Fetching request 11 of 37 (1992-04-10 to 1992-04-19) ~ 02:36:12 UTC
Fetching request 12 of 37 (1992-04-20 to 1992-04-29) ~ 02:36:15 UTC
Fetching request 13 of 37 (1992-04-30 to 1992-05-09) ~ 02:36:17 UTC
Fetching request 14 of 37 (1992-05-10 to 1992-05-19) ~ 02:36:19 UTC
Fetching request 15 of 37 (1992-05-20 to 1992-05-29) ~ 02:36:21 UTC
Fetching request 16 of 37 (1992-05-30 to 1992-06-08) ~ 02:36:23 UTC
Fetching request 17 of 37 (1992-06-09 to 1992-06-18) ~ 02:36:25 UTC
Fetching request 18 of 37 (1992-06-19 to 1992-06-28) ~ 02:36:27 UTC
Fetching request 19 of 37 (1992-06-29 to 1992-07-08) ~ 02:36:29 UTC
Fetching request 20 of 37 (1992-07-09 to 1992-07-18) ~ 02:36:31 UTC
Fetching request 21 of 37 (1992-07-19 to 1992-07-28) ~ 02:36:34 UTC
Fetching request 22 of 37 (1992-07-29 to 1992-08-07) ~ 02:36:36 UTC
Fetching request 23 of 37 (1992-08-08 to 1992-08-17) ~ 02:36:38 UTC
Fetching request 24 of 37 (1992-08-18 to 1992-08-27) ~ 02:36:41 UTC
Fetching request 25 of 37 (1992-08-28 to 1992-09-06) ~ 02:36:43 UTC
Fetching request 26 of 37 (1992-09-07 to 1992-09-16) ~ 02:36:45 UTC
Fetching request 27 of 37 (1992-09-17 to 1992-09-26) ~ 02:36:48 UTC
Fetching request 28 of 37 (1992-09-27 to 1992-10-06) ~ 02:36:50 UTC
Fetching request 29 of 37 (1992-10-07 to 1992-10-16) ~ 02:36:52 UTC
Fetching request 30 of 37 (1992-10-17 to 1992-10-26) ~ 02:36:55 UTC
Fetching request 31 of 37 (1992-10-27 to 1992-11-05) ~ 02:36:58 UTC
Fetching request 32 of 37 (1992-11-06 to 1992-11-15) ~ 02:37:00 UTC
Fetching request 33 of 37 (1992-11-16 to 1992-11-25) ~ 02:37:02 UTC
Fetching request 34 of 37 (1992-11-26 to 1992-12-05) ~ 02:37:04 UTC
Fetching request 35 of 37 (1992-12-06 to 1992-12-15) ~ 02:37:06 UTC
Fetching request 36 of 37 (1992-12-16 to 1992-12-25) ~ 02:37:08 UTC
Fetching request 37 of 37 (1992-12-26 to 1992-12-31) ~ 02:37:10 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1993-01-01 to 1993-01-10) ~ 02:37:19 UTC
Fetching request 2 of 37 (1993-01-11 to 1993-01-20) ~ 02:37:20 UTC
Fetching request 3 of 37 (1993-01-21 to 1993-01-30) ~ 02:37:20 UTC
Fetching request 4 of 37 (1993-01-31 to 1993-02-09) ~ 02:37:20 UTC
Fetching request 5 of 37 (1993-02-10 to 1993-02-19) ~ 02:37:20 UTC
Fetching request 6 of 37 (1993-02-20 to 1993-03-01) ~ 02:37:20 UTC
Fetching request 7 of 37 (1993-03-02 to 1993-03-11) ~ 02:37:21 UTC
Fetching request 8 of 37 (1993-03-12 to 1993-03-21) ~ 02:37:21 UTC
Fetching request 9 of 37 (1993-03-22 to 1993-03-31) ~ 02:37:21 UTC
Fetching request 10 of 37 (1993-04-01 to 1993-04-10) ~ 02:37:21 UTC
Fetching request 11 of 37 (1993-04-11 to 1993-04-20) ~ 02:37:21 UTC
Fetching request 12 of 37 (1993-04-21 to 1993-04-30) ~ 02:37:22 UTC
Fetching request 13 of 37 (1993-05-01 to 1993-05-10) ~ 02:37:22 UTC
Fetching request 14 of 37 (1993-05-11 to 1993-05-20) ~ 02:37:22 UTC
Fetching request 15 of 37 (1993-05-21 to 1993-05-30) ~ 02:37:22 UTC
Fetching request 16 of 37 (1993-05-31 to 1993-06-09) ~ 02:37:22 UTC
Fetching request 17 of 37 (1993-06-10 to 1993-06-19) ~ 02:37:23 UTC
Fetching request 18 of 37 (1993-06-20 to 1993-06-29) ~ 02:37:23 UTC
Fetching request 19 of 37 (1993-06-30 to 1993-07-09) ~ 02:37:23 UTC
Fetching request 20 of 37 (1993-07-10 to 1993-07-19) ~ 02:37:24 UTC
Fetching request 21 of 37 (1993-07-20 to 1993-07-29) ~ 02:37:24 UTC
Fetching request 22 of 37 (1993-07-30 to 1993-08-08) ~ 02:37:24 UTC
Fetching request 23 of 37 (1993-08-09 to 1993-08-18) ~ 02:37:24 UTC
Fetching request 24 of 37 (1993-08-19 to 1993-08-28) ~ 02:37:24 UTC
Fetching request 25 of 37 (1993-08-29 to 1993-09-07) ~ 02:37:24 UTC
Fetching request 26 of 37 (1993-09-08 to 1993-09-17) ~ 02:37:25 UTC
Fetching request 27 of 37 (1993-09-18 to 1993-09-27) ~ 02:37:25 UTC
Fetching request 28 of 37 (1993-09-28 to 1993-10-07) ~ 02:37:25 UTC
Fetching request 29 of 37 (1993-10-08 to 1993-10-17) ~ 02:37:25 UTC
Fetching request 30 of 37 (1993-10-18 to 1993-10-27) ~ 02:37:25 UTC
Fetching request 31 of 37 (1993-10-28 to 1993-11-06) ~ 02:37:26 UTC
Fetching request 32 of 37 (1993-11-07 to 1993-11-16) ~ 02:37:26 UTC
Fetching request 33 of 37 (1993-11-17 to 1993-11-26) ~ 02:37:26 UTC
Fetching request 34 of 37 (1993-11-27 to 1993-12-06) ~ 02:37:26 UTC
Fetching request 35 of 37 (1993-12-07 to 1993-12-16) ~ 02:37:26 UTC
Fetching request 36 of 37 (1993-12-17 to 1993-12-26) ~ 02:37:27 UTC
Fetching request 37 of 37 (1993-12-27 to 1993-12-31) ~ 02:37:27 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1994-01-01 to 1994-01-10) ~ 02:37:34 UTC
Fetching request 2 of 37 (1994-01-11 to 1994-01-20) ~ 02:37:35 UTC
Fetching request 3 of 37 (1994-01-21 to 1994-01-30) ~ 02:37:35 UTC
Fetching request 4 of 37 (1994-01-31 to 1994-02-09) ~ 02:37:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9d380ecdb10d9ec7078d2c6f1e9b15d7.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 37 (1994-02-10 to 1994-02-19) ~ 02:37:39 UTC
Fetching request 6 of 37 (1994-02-20 to 1994-03-01) ~ 02:37:41 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/9cb9a58350377df78b8ecdb8eced18b6.nc (return_on_error= FALSE )
RETRYing...
Fetching request 7 of 37 (1994-03-02 to 1994-03-11) ~ 02:37:43 UTC
Fetching request 8 of 37 (1994-03-12 to 1994-03-21) ~ 02:37:45 UTC
Fetching request 9 of 37 (1994-03-22 to 1994-03-31) ~ 02:37:47 UTC
Fetching request 10 of 37 (1994-04-01 to 1994-04-10) ~ 02:37:48 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/807eeb3924a424e6232b4e7c19315227.nc (return_on_error= FALSE )
RETRYing...
Fetching request 11 of 37 (1994-04-11 to 1994-04-20) ~ 02:37:51 UTC
Fetching request 12 of 37 (1994-04-21 to 1994-04-30) ~ 02:37:52 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1706875db4fd50c96fe245018d0652cc.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1706875db4fd50c96fe245018d0652cc.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1706875db4fd50c96fe245018d0652cc.nc (return_on_error= FALSE )
RETRYing...
Fetching request 13 of 37 (1994-05-01 to 1994-05-10) ~ 02:37:53 UTC
Fetching request 14 of 37 (1994-05-11 to 1994-05-20) ~ 02:37:55 UTC
Fetching request 15 of 37 (1994-05-21 to 1994-05-30) ~ 02:37:56 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1994_nc/1bfbf1d268d55f1f5f9c0a7877d72dda.nc (return_on_error= FALSE )
RETRYing...
Fetching request 16 of 37 (1994-05-31 to 1994-06-09) ~ 02:37:59 UTC
Fetching request 17 of 37 (1994-06-10 to 1994-06-19) ~ 02:38:03 UTC
Fetching request 18 of 37 (1994-06-20 to 1994-06-29) ~ 02:38:04 UTC
Fetching request 19 of 37 (1994-06-30 to 1994-07-09) ~ 02:38:07 UTC
Fetching request 20 of 37 (1994-07-10 to 1994-07-19) ~ 02:38:09 UTC
Fetching request 21 of 37 (1994-07-20 to 1994-07-29) ~ 02:38:12 UTC
Fetching request 22 of 37 (1994-07-30 to 1994-08-08) ~ 02:38:14 UTC
Fetching request 23 of 37 (1994-08-09 to 1994-08-18) ~ 02:38:17 UTC
Fetching request 24 of 37 (1994-08-19 to 1994-08-28) ~ 02:38:19 UTC
Fetching request 25 of 37 (1994-08-29 to 1994-09-07) ~ 02:38:21 UTC
Fetching request 26 of 37 (1994-09-08 to 1994-09-17) ~ 02:38:23 UTC
Fetching request 27 of 37 (1994-09-18 to 1994-09-27) ~ 02:38:25 UTC
Fetching request 28 of 37 (1994-09-28 to 1994-10-07) ~ 02:38:28 UTC
Fetching request 29 of 37 (1994-10-08 to 1994-10-17) ~ 02:38:29 UTC
Fetching request 30 of 37 (1994-10-18 to 1994-10-27) ~ 02:38:32 UTC
Fetching request 31 of 37 (1994-10-28 to 1994-11-06) ~ 02:38:33 UTC
Fetching request 32 of 37 (1994-11-07 to 1994-11-16) ~ 02:38:36 UTC
Fetching request 33 of 37 (1994-11-17 to 1994-11-26) ~ 02:38:38 UTC
Fetching request 34 of 37 (1994-11-27 to 1994-12-06) ~ 02:38:40 UTC
Fetching request 35 of 37 (1994-12-07 to 1994-12-16) ~ 02:38:42 UTC
Fetching request 36 of 37 (1994-12-17 to 1994-12-26) ~ 02:38:44 UTC
Fetching request 37 of 37 (1994-12-27 to 1994-12-31) ~ 02:38:46 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1995-01-01 to 1995-01-10) ~ 02:38:54 UTC
Fetching request 2 of 37 (1995-01-11 to 1995-01-20) ~ 02:38:54 UTC
Fetching request 3 of 37 (1995-01-21 to 1995-01-30) ~ 02:38:54 UTC
Fetching request 4 of 37 (1995-01-31 to 1995-02-09) ~ 02:38:54 UTC
Fetching request 5 of 37 (1995-02-10 to 1995-02-19) ~ 02:38:54 UTC
Fetching request 6 of 37 (1995-02-20 to 1995-03-01) ~ 02:38:55 UTC
Fetching request 7 of 37 (1995-03-02 to 1995-03-11) ~ 02:38:55 UTC
Fetching request 8 of 37 (1995-03-12 to 1995-03-21) ~ 02:38:55 UTC
Fetching request 9 of 37 (1995-03-22 to 1995-03-31) ~ 02:38:55 UTC
Fetching request 10 of 37 (1995-04-01 to 1995-04-10) ~ 02:38:55 UTC
Fetching request 11 of 37 (1995-04-11 to 1995-04-20) ~ 02:38:56 UTC
Fetching request 12 of 37 (1995-04-21 to 1995-04-30) ~ 02:38:56 UTC
Fetching request 13 of 37 (1995-05-01 to 1995-05-10) ~ 02:38:56 UTC
Fetching request 14 of 37 (1995-05-11 to 1995-05-20) ~ 02:38:56 UTC
Fetching request 15 of 37 (1995-05-21 to 1995-05-30) ~ 02:38:56 UTC
Fetching request 16 of 37 (1995-05-31 to 1995-06-09) ~ 02:38:57 UTC
Fetching request 17 of 37 (1995-06-10 to 1995-06-19) ~ 02:38:57 UTC
Fetching request 18 of 37 (1995-06-20 to 1995-06-29) ~ 02:38:57 UTC
Fetching request 19 of 37 (1995-06-30 to 1995-07-09) ~ 02:38:57 UTC
Fetching request 20 of 37 (1995-07-10 to 1995-07-19) ~ 02:38:57 UTC
Fetching request 21 of 37 (1995-07-20 to 1995-07-29) ~ 02:38:58 UTC
Fetching request 22 of 37 (1995-07-30 to 1995-08-08) ~ 02:38:59 UTC
Fetching request 23 of 37 (1995-08-09 to 1995-08-18) ~ 02:39:01 UTC
Fetching request 24 of 37 (1995-08-19 to 1995-08-28) ~ 02:39:03 UTC
Fetching request 25 of 37 (1995-08-29 to 1995-09-07) ~ 02:39:05 UTC
Fetching request 26 of 37 (1995-09-08 to 1995-09-17) ~ 02:39:09 UTC
Fetching request 27 of 37 (1995-09-18 to 1995-09-27) ~ 02:39:11 UTC
Fetching request 28 of 37 (1995-09-28 to 1995-10-07) ~ 02:39:13 UTC
Fetching request 29 of 37 (1995-10-08 to 1995-10-17) ~ 02:39:18 UTC
Fetching request 30 of 37 (1995-10-18 to 1995-10-27) ~ 02:39:26 UTC
Fetching request 31 of 37 (1995-10-28 to 1995-11-06) ~ 02:39:28 UTC
Fetching request 32 of 37 (1995-11-07 to 1995-11-16) ~ 02:39:31 UTC
Fetching request 33 of 37 (1995-11-17 to 1995-11-26) ~ 02:39:38 UTC
Fetching request 34 of 37 (1995-11-27 to 1995-12-06) ~ 02:39:40 UTC
Fetching request 35 of 37 (1995-12-07 to 1995-12-16) ~ 02:39:43 UTC
Fetching request 36 of 37 (1995-12-17 to 1995-12-26) ~ 02:39:46 UTC
Fetching request 37 of 37 (1995-12-27 to 1995-12-31) ~ 02:39:47 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1996-01-01 to 1996-01-10) ~ 02:39:54 UTC
Fetching request 2 of 37 (1996-01-11 to 1996-01-20) ~ 02:39:55 UTC
Fetching request 3 of 37 (1996-01-21 to 1996-01-30) ~ 02:39:55 UTC
Fetching request 4 of 37 (1996-01-31 to 1996-02-09) ~ 02:39:55 UTC
Fetching request 5 of 37 (1996-02-10 to 1996-02-19) ~ 02:39:55 UTC
Fetching request 6 of 37 (1996-02-20 to 1996-02-29) ~ 02:39:55 UTC
Fetching request 7 of 37 (1996-03-01 to 1996-03-10) ~ 02:39:56 UTC
Fetching request 8 of 37 (1996-03-11 to 1996-03-20) ~ 02:39:56 UTC
Fetching request 9 of 37 (1996-03-21 to 1996-03-30) ~ 02:39:56 UTC
Fetching request 10 of 37 (1996-03-31 to 1996-04-09) ~ 02:39:56 UTC
Fetching request 11 of 37 (1996-04-10 to 1996-04-19) ~ 02:39:56 UTC
Fetching request 12 of 37 (1996-04-20 to 1996-04-29) ~ 02:39:57 UTC
Fetching request 13 of 37 (1996-04-30 to 1996-05-09) ~ 02:39:57 UTC
Fetching request 14 of 37 (1996-05-10 to 1996-05-19) ~ 02:39:57 UTC
Fetching request 15 of 37 (1996-05-20 to 1996-05-29) ~ 02:39:57 UTC
Fetching request 16 of 37 (1996-05-30 to 1996-06-08) ~ 02:39:58 UTC
Fetching request 17 of 37 (1996-06-09 to 1996-06-18) ~ 02:40:00 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/68b7da43c08e369d5772e34a6a5f346e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/68b7da43c08e369d5772e34a6a5f346e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/68b7da43c08e369d5772e34a6a5f346e.nc (return_on_error= FALSE )
RETRYing...
Fetching request 18 of 37 (1996-06-19 to 1996-06-28) ~ 02:40:01 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/ffb6c299f24a491aee8cacbb0466fd60.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/ffb6c299f24a491aee8cacbb0466fd60.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/ffb6c299f24a491aee8cacbb0466fd60.nc (return_on_error= FALSE )
RETRYing...
Fetching request 19 of 37 (1996-06-29 to 1996-07-08) ~ 02:40:03 UTC
Fetching request 20 of 37 (1996-07-09 to 1996-07-18) ~ 02:40:04 UTC
Fetching request 21 of 37 (1996-07-19 to 1996-07-28) ~ 02:40:07 UTC
Fetching request 22 of 37 (1996-07-29 to 1996-08-07) ~ 02:40:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/8a20233973d3cc6b37ce026de2e534b0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/8a20233973d3cc6b37ce026de2e534b0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1996_nc/8a20233973d3cc6b37ce026de2e534b0.nc (return_on_error= FALSE )
RETRYing...
Fetching request 23 of 37 (1996-08-08 to 1996-08-17) ~ 02:40:11 UTC
Fetching request 24 of 37 (1996-08-18 to 1996-08-27) ~ 02:40:12 UTC
Fetching request 25 of 37 (1996-08-28 to 1996-09-06) ~ 02:40:14 UTC
Fetching request 26 of 37 (1996-09-07 to 1996-09-16) ~ 02:40:16 UTC
Fetching request 27 of 37 (1996-09-17 to 1996-09-26) ~ 02:40:29 UTC
Fetching request 28 of 37 (1996-09-27 to 1996-10-06) ~ 02:40:31 UTC
Fetching request 29 of 37 (1996-10-07 to 1996-10-16) ~ 02:40:37 UTC
Fetching request 30 of 37 (1996-10-17 to 1996-10-26) ~ 02:40:48 UTC
Fetching request 31 of 37 (1996-10-27 to 1996-11-05) ~ 02:40:50 UTC
Fetching request 32 of 37 (1996-11-06 to 1996-11-15) ~ 02:40:53 UTC
Fetching request 33 of 37 (1996-11-16 to 1996-11-25) ~ 02:40:59 UTC
Fetching request 34 of 37 (1996-11-26 to 1996-12-05) ~ 02:41:02 UTC
Fetching request 35 of 37 (1996-12-06 to 1996-12-15) ~ 02:41:06 UTC
Fetching request 36 of 37 (1996-12-16 to 1996-12-25) ~ 02:41:09 UTC
Fetching request 37 of 37 (1996-12-26 to 1996-12-31) ~ 02:41:11 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1997-01-01 to 1997-01-10) ~ 02:41:19 UTC
Fetching request 2 of 37 (1997-01-11 to 1997-01-20) ~ 02:41:19 UTC
Fetching request 3 of 37 (1997-01-21 to 1997-01-30) ~ 02:41:19 UTC
Fetching request 4 of 37 (1997-01-31 to 1997-02-09) ~ 02:41:20 UTC
Fetching request 5 of 37 (1997-02-10 to 1997-02-19) ~ 02:41:20 UTC
Fetching request 6 of 37 (1997-02-20 to 1997-03-01) ~ 02:41:20 UTC
Fetching request 7 of 37 (1997-03-02 to 1997-03-11) ~ 02:41:20 UTC
Fetching request 8 of 37 (1997-03-12 to 1997-03-21) ~ 02:41:20 UTC
Fetching request 9 of 37 (1997-03-22 to 1997-03-31) ~ 02:41:20 UTC
Fetching request 10 of 37 (1997-04-01 to 1997-04-10) ~ 02:41:21 UTC
Fetching request 11 of 37 (1997-04-11 to 1997-04-20) ~ 02:41:21 UTC
Fetching request 12 of 37 (1997-04-21 to 1997-04-30) ~ 02:41:21 UTC
Fetching request 13 of 37 (1997-05-01 to 1997-05-10) ~ 02:41:21 UTC
Fetching request 14 of 37 (1997-05-11 to 1997-05-20) ~ 02:41:22 UTC
Fetching request 15 of 37 (1997-05-21 to 1997-05-30) ~ 02:41:41 UTC
Fetching request 16 of 37 (1997-05-31 to 1997-06-09) ~ 02:41:43 UTC
Fetching request 17 of 37 (1997-06-10 to 1997-06-19) ~ 02:41:44 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1997_nc/088a0b6406b3c15a8433f29974ddad2b.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1998-01-01 to 1998-01-10) ~ 02:41:52 UTC
Fetching request 2 of 37 (1998-01-11 to 1998-01-20) ~ 02:41:54 UTC
Fetching request 3 of 37 (1998-01-21 to 1998-01-30) ~ 02:41:56 UTC
Fetching request 4 of 37 (1998-01-31 to 1998-02-09) ~ 02:42:05 UTC
Fetching request 5 of 37 (1998-02-10 to 1998-02-19) ~ 02:42:11 UTC
Fetching request 6 of 37 (1998-02-20 to 1998-03-01) ~ 02:42:13 UTC
Fetching request 7 of 37 (1998-03-02 to 1998-03-11) ~ 02:42:20 UTC
Fetching request 8 of 37 (1998-03-12 to 1998-03-21) ~ 02:42:23 UTC
Fetching request 9 of 37 (1998-03-22 to 1998-03-31) ~ 02:42:28 UTC
Fetching request 10 of 37 (1998-04-01 to 1998-04-10) ~ 02:42:30 UTC
Fetching request 11 of 37 (1998-04-11 to 1998-04-20) ~ 02:42:32 UTC
Fetching request 12 of 37 (1998-04-21 to 1998-04-30) ~ 02:42:43 UTC
Fetching request 13 of 37 (1998-05-01 to 1998-05-10) ~ 02:42:51 UTC
Fetching request 14 of 37 (1998-05-11 to 1998-05-20) ~ 02:42:52 UTC
Fetching request 15 of 37 (1998-05-21 to 1998-05-30) ~ 02:42:54 UTC
Fetching request 16 of 37 (1998-05-31 to 1998-06-09) ~ 02:42:56 UTC
Fetching request 17 of 37 (1998-06-10 to 1998-06-19) ~ 02:42:59 UTC
Fetching request 18 of 37 (1998-06-20 to 1998-06-29) ~ 02:43:01 UTC
Fetching request 19 of 37 (1998-06-30 to 1998-07-09) ~ 02:43:04 UTC
Fetching request 20 of 37 (1998-07-10 to 1998-07-19) ~ 02:43:06 UTC
Fetching request 21 of 37 (1998-07-20 to 1998-07-29) ~ 02:43:08 UTC
Fetching request 22 of 37 (1998-07-30 to 1998-08-08) ~ 02:43:10 UTC
Fetching request 23 of 37 (1998-08-09 to 1998-08-18) ~ 02:43:13 UTC
Fetching request 24 of 37 (1998-08-19 to 1998-08-28) ~ 02:43:15 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1998_nc/815ff443434682a38ec0205d9fcf1d05.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (1999-01-01 to 1999-01-10) ~ 02:43:25 UTC
Fetching request 2 of 37 (1999-01-11 to 1999-01-20) ~ 02:43:27 UTC
Fetching request 3 of 37 (1999-01-21 to 1999-01-30) ~ 02:43:29 UTC
Fetching request 4 of 37 (1999-01-31 to 1999-02-09) ~ 02:43:32 UTC
Fetching request 5 of 37 (1999-02-10 to 1999-02-19) ~ 02:43:34 UTC
Fetching request 6 of 37 (1999-02-20 to 1999-03-01) ~ 02:43:36 UTC
Fetching request 7 of 37 (1999-03-02 to 1999-03-11) ~ 02:43:39 UTC
Fetching request 8 of 37 (1999-03-12 to 1999-03-21) ~ 02:43:41 UTC
Fetching request 9 of 37 (1999-03-22 to 1999-03-31) ~ 02:43:42 UTC
Fetching request 10 of 37 (1999-04-01 to 1999-04-10) ~ 02:43:44 UTC
Fetching request 11 of 37 (1999-04-11 to 1999-04-20) ~ 02:43:46 UTC
Fetching request 12 of 37 (1999-04-21 to 1999-04-30) ~ 02:43:48 UTC
Fetching request 13 of 37 (1999-05-01 to 1999-05-10) ~ 02:43:50 UTC
Fetching request 14 of 37 (1999-05-11 to 1999-05-20) ~ 02:43:51 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/1999_nc/2cae7ecec1b171ac4d74f8d72350d7b9.nc (return_on_error= FALSE )
RETRYing...
Fetching request 15 of 37 (1999-05-21 to 1999-05-30) ~ 02:43:56 UTC
Fetching request 16 of 37 (1999-05-31 to 1999-06-09) ~ 02:43:57 UTC
Fetching request 17 of 37 (1999-06-10 to 1999-06-19) ~ 02:44:00 UTC
Fetching request 18 of 37 (1999-06-20 to 1999-06-29) ~ 02:44:12 UTC
Fetching request 19 of 37 (1999-06-30 to 1999-07-09) ~ 02:44:14 UTC
Fetching request 20 of 37 (1999-07-10 to 1999-07-19) ~ 02:44:16 UTC
Fetching request 21 of 37 (1999-07-20 to 1999-07-29) ~ 02:44:18 UTC
Fetching request 22 of 37 (1999-07-30 to 1999-08-08) ~ 02:44:24 UTC
Fetching request 23 of 37 (1999-08-09 to 1999-08-18) ~ 02:44:25 UTC
Fetching request 24 of 37 (1999-08-19 to 1999-08-28) ~ 02:44:27 UTC
Fetching request 25 of 37 (1999-08-29 to 1999-09-07) ~ 02:44:39 UTC
Fetching request 26 of 37 (1999-09-08 to 1999-09-17) ~ 02:44:41 UTC
Fetching request 27 of 37 (1999-09-18 to 1999-09-27) ~ 02:44:43 UTC
Fetching request 28 of 37 (1999-09-28 to 1999-10-07) ~ 02:44:45 UTC
Fetching request 29 of 37 (1999-10-08 to 1999-10-17) ~ 02:44:47 UTC
Fetching request 30 of 37 (1999-10-18 to 1999-10-27) ~ 02:44:50 UTC
Fetching request 31 of 37 (1999-10-28 to 1999-11-06) ~ 02:44:52 UTC
Fetching request 32 of 37 (1999-11-07 to 1999-11-16) ~ 02:44:57 UTC
Fetching request 33 of 37 (1999-11-17 to 1999-11-26) ~ 02:45:00 UTC
Fetching request 34 of 37 (1999-11-27 to 1999-12-06) ~ 02:45:02 UTC
Fetching request 35 of 37 (1999-12-07 to 1999-12-16) ~ 02:45:16 UTC
Fetching request 36 of 37 (1999-12-17 to 1999-12-26) ~ 02:45:18 UTC
Fetching request 37 of 37 (1999-12-27 to 1999-12-31) ~ 02:45:22 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2000-01-01 to 2000-01-10) ~ 02:45:29 UTC
Fetching request 2 of 37 (2000-01-11 to 2000-01-20) ~ 02:45:30 UTC
Fetching request 3 of 37 (2000-01-21 to 2000-01-30) ~ 02:45:30 UTC
Fetching request 4 of 37 (2000-01-31 to 2000-02-09) ~ 02:45:30 UTC
Fetching request 5 of 37 (2000-02-10 to 2000-02-19) ~ 02:45:30 UTC
Fetching request 6 of 37 (2000-02-20 to 2000-02-29) ~ 02:45:31 UTC
Fetching request 7 of 37 (2000-03-01 to 2000-03-10) ~ 02:45:31 UTC
Fetching request 8 of 37 (2000-03-11 to 2000-03-20) ~ 02:45:31 UTC
Fetching request 9 of 37 (2000-03-21 to 2000-03-30) ~ 02:45:31 UTC
Fetching request 10 of 37 (2000-03-31 to 2000-04-09) ~ 02:45:31 UTC
Fetching request 11 of 37 (2000-04-10 to 2000-04-19) ~ 02:45:31 UTC
Fetching request 12 of 37 (2000-04-20 to 2000-04-29) ~ 02:45:32 UTC
Fetching request 13 of 37 (2000-04-30 to 2000-05-09) ~ 02:45:32 UTC
Fetching request 14 of 37 (2000-05-10 to 2000-05-19) ~ 02:45:32 UTC
Fetching request 15 of 37 (2000-05-20 to 2000-05-29) ~ 02:45:32 UTC
Fetching request 16 of 37 (2000-05-30 to 2000-06-08) ~ 02:45:32 UTC
Fetching request 17 of 37 (2000-06-09 to 2000-06-18) ~ 02:45:33 UTC
Fetching request 18 of 37 (2000-06-19 to 2000-06-28) ~ 02:45:33 UTC
Fetching request 19 of 37 (2000-06-29 to 2000-07-08) ~ 02:45:33 UTC
Fetching request 20 of 37 (2000-07-09 to 2000-07-18) ~ 02:45:33 UTC
Fetching request 21 of 37 (2000-07-19 to 2000-07-28) ~ 02:45:33 UTC
Fetching request 22 of 37 (2000-07-29 to 2000-08-07) ~ 02:45:34 UTC
Fetching request 23 of 37 (2000-08-08 to 2000-08-17) ~ 02:45:35 UTC
Fetching request 24 of 37 (2000-08-18 to 2000-08-27) ~ 02:45:35 UTC
Fetching request 25 of 37 (2000-08-28 to 2000-09-06) ~ 02:45:35 UTC
Fetching request 26 of 37 (2000-09-07 to 2000-09-16) ~ 02:45:36 UTC
Fetching request 27 of 37 (2000-09-17 to 2000-09-26) ~ 02:45:37 UTC
Fetching request 28 of 37 (2000-09-27 to 2000-10-06) ~ 02:45:39 UTC
Fetching request 29 of 37 (2000-10-07 to 2000-10-16) ~ 02:45:40 UTC
Fetching request 30 of 37 (2000-10-17 to 2000-10-26) ~ 02:45:42 UTC
Fetching request 31 of 37 (2000-10-27 to 2000-11-05) ~ 02:45:44 UTC
Fetching request 32 of 37 (2000-11-06 to 2000-11-15) ~ 02:45:46 UTC
Fetching request 33 of 37 (2000-11-16 to 2000-11-25) ~ 02:45:47 UTC
Fetching request 34 of 37 (2000-11-26 to 2000-12-05) ~ 02:45:50 UTC
Fetching request 35 of 37 (2000-12-06 to 2000-12-15) ~ 02:45:52 UTC
Fetching request 36 of 37 (2000-12-16 to 2000-12-25) ~ 02:45:54 UTC
Fetching request 37 of 37 (2000-12-26 to 2000-12-31) ~ 02:45:56 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2001-01-01 to 2001-01-10) ~ 02:46:04 UTC
Fetching request 2 of 37 (2001-01-11 to 2001-01-20) ~ 02:46:04 UTC
Fetching request 3 of 37 (2001-01-21 to 2001-01-30) ~ 02:46:05 UTC
Fetching request 4 of 37 (2001-01-31 to 2001-02-09) ~ 02:46:05 UTC
Fetching request 5 of 37 (2001-02-10 to 2001-02-19) ~ 02:46:05 UTC
Fetching request 6 of 37 (2001-02-20 to 2001-03-01) ~ 02:46:05 UTC
Fetching request 7 of 37 (2001-03-02 to 2001-03-11) ~ 02:46:05 UTC
Fetching request 8 of 37 (2001-03-12 to 2001-03-21) ~ 02:46:06 UTC
Fetching request 9 of 37 (2001-03-22 to 2001-03-31) ~ 02:46:06 UTC
Fetching request 10 of 37 (2001-04-01 to 2001-04-10) ~ 02:46:06 UTC
Fetching request 11 of 37 (2001-04-11 to 2001-04-20) ~ 02:46:09 UTC
Fetching request 12 of 37 (2001-04-21 to 2001-04-30) ~ 02:46:14 UTC
Fetching request 13 of 37 (2001-05-01 to 2001-05-10) ~ 02:46:26 UTC
Fetching request 14 of 37 (2001-05-11 to 2001-05-20) ~ 02:46:31 UTC
Fetching request 15 of 37 (2001-05-21 to 2001-05-30) ~ 02:46:42 UTC
Fetching request 16 of 37 (2001-05-31 to 2001-06-09) ~ 02:46:59 UTC
Fetching request 17 of 37 (2001-06-10 to 2001-06-19) ~ 02:47:04 UTC
Fetching request 18 of 37 (2001-06-20 to 2001-06-29) ~ 02:47:06 UTC
Fetching request 19 of 37 (2001-06-30 to 2001-07-09) ~ 02:47:21 UTC
Fetching request 20 of 37 (2001-07-10 to 2001-07-19) ~ 02:47:23 UTC
Fetching request 21 of 37 (2001-07-20 to 2001-07-29) ~ 02:47:25 UTC
Fetching request 22 of 37 (2001-07-30 to 2001-08-08) ~ 02:47:27 UTC
Fetching request 23 of 37 (2001-08-09 to 2001-08-18) ~ 02:47:29 UTC
Fetching request 24 of 37 (2001-08-19 to 2001-08-28) ~ 02:47:31 UTC
Fetching request 25 of 37 (2001-08-29 to 2001-09-07) ~ 02:47:33 UTC
Fetching request 26 of 37 (2001-09-08 to 2001-09-17) ~ 02:47:35 UTC
Fetching request 27 of 37 (2001-09-18 to 2001-09-27) ~ 02:47:41 UTC
Fetching request 28 of 37 (2001-09-28 to 2001-10-07) ~ 02:47:43 UTC
Fetching request 29 of 37 (2001-10-08 to 2001-10-17) ~ 02:47:46 UTC
Fetching request 30 of 37 (2001-10-18 to 2001-10-27) ~ 02:47:48 UTC
Fetching request 31 of 37 (2001-10-28 to 2001-11-06) ~ 02:47:50 UTC
Fetching request 32 of 37 (2001-11-07 to 2001-11-16) ~ 02:47:53 UTC
Fetching request 33 of 37 (2001-11-17 to 2001-11-26) ~ 02:48:01 UTC
Fetching request 34 of 37 (2001-11-27 to 2001-12-06) ~ 02:48:03 UTC
Fetching request 35 of 37 (2001-12-07 to 2001-12-16) ~ 02:48:05 UTC
Fetching request 36 of 37 (2001-12-17 to 2001-12-26) ~ 02:48:06 UTC
Fetching request 37 of 37 (2001-12-27 to 2001-12-31) ~ 02:48:08 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2002-01-01 to 2002-01-10) ~ 02:48:16 UTC
Fetching request 2 of 37 (2002-01-11 to 2002-01-20) ~ 02:48:17 UTC
Fetching request 3 of 37 (2002-01-21 to 2002-01-30) ~ 02:48:17 UTC
Fetching request 4 of 37 (2002-01-31 to 2002-02-09) ~ 02:48:17 UTC
Fetching request 5 of 37 (2002-02-10 to 2002-02-19) ~ 02:48:17 UTC
Fetching request 6 of 37 (2002-02-20 to 2002-03-01) ~ 02:48:18 UTC
Fetching request 7 of 37 (2002-03-02 to 2002-03-11) ~ 02:48:18 UTC
Fetching request 8 of 37 (2002-03-12 to 2002-03-21) ~ 02:48:18 UTC
Fetching request 9 of 37 (2002-03-22 to 2002-03-31) ~ 02:48:18 UTC
Fetching request 10 of 37 (2002-04-01 to 2002-04-10) ~ 02:48:18 UTC
Fetching request 11 of 37 (2002-04-11 to 2002-04-20) ~ 02:48:19 UTC
Fetching request 12 of 37 (2002-04-21 to 2002-04-30) ~ 02:48:19 UTC
Fetching request 13 of 37 (2002-05-01 to 2002-05-10) ~ 02:48:19 UTC
Fetching request 14 of 37 (2002-05-11 to 2002-05-20) ~ 02:48:19 UTC
Fetching request 15 of 37 (2002-05-21 to 2002-05-30) ~ 02:48:19 UTC
Fetching request 16 of 37 (2002-05-31 to 2002-06-09) ~ 02:48:20 UTC
Fetching request 17 of 37 (2002-06-10 to 2002-06-19) ~ 02:48:20 UTC
Fetching request 18 of 37 (2002-06-20 to 2002-06-29) ~ 02:48:20 UTC
Fetching request 19 of 37 (2002-06-30 to 2002-07-09) ~ 02:48:20 UTC
Fetching request 20 of 37 (2002-07-10 to 2002-07-19) ~ 02:48:20 UTC
Fetching request 21 of 37 (2002-07-20 to 2002-07-29) ~ 02:48:21 UTC
Fetching request 22 of 37 (2002-07-30 to 2002-08-08) ~ 02:48:21 UTC
Fetching request 23 of 37 (2002-08-09 to 2002-08-18) ~ 02:48:21 UTC
Fetching request 24 of 37 (2002-08-19 to 2002-08-28) ~ 02:48:21 UTC
Fetching request 25 of 37 (2002-08-29 to 2002-09-07) ~ 02:48:21 UTC
Fetching request 26 of 37 (2002-09-08 to 2002-09-17) ~ 02:48:22 UTC
Fetching request 27 of 37 (2002-09-18 to 2002-09-27) ~ 02:48:22 UTC
Fetching request 28 of 37 (2002-09-28 to 2002-10-07) ~ 02:48:22 UTC
Fetching request 29 of 37 (2002-10-08 to 2002-10-17) ~ 02:48:23 UTC
Fetching request 30 of 37 (2002-10-18 to 2002-10-27) ~ 02:48:32 UTC
Fetching request 31 of 37 (2002-10-28 to 2002-11-06) ~ 02:48:39 UTC
Fetching request 32 of 37 (2002-11-07 to 2002-11-16) ~ 02:48:41 UTC
Fetching request 33 of 37 (2002-11-17 to 2002-11-26) ~ 02:48:43 UTC
Fetching request 34 of 37 (2002-11-27 to 2002-12-06) ~ 02:48:45 UTC
Fetching request 35 of 37 (2002-12-07 to 2002-12-16) ~ 02:48:49 UTC
Fetching request 36 of 37 (2002-12-17 to 2002-12-26) ~ 02:48:51 UTC
Fetching request 37 of 37 (2002-12-27 to 2002-12-31) ~ 02:49:02 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2003-01-01 to 2003-01-10) ~ 02:49:09 UTC
Fetching request 2 of 37 (2003-01-11 to 2003-01-20) ~ 02:49:10 UTC
Fetching request 3 of 37 (2003-01-21 to 2003-01-30) ~ 02:49:10 UTC
Fetching request 4 of 37 (2003-01-31 to 2003-02-09) ~ 02:49:10 UTC
Fetching request 5 of 37 (2003-02-10 to 2003-02-19) ~ 02:49:10 UTC
Fetching request 6 of 37 (2003-02-20 to 2003-03-01) ~ 02:49:10 UTC
Fetching request 7 of 37 (2003-03-02 to 2003-03-11) ~ 02:49:11 UTC
Fetching request 8 of 37 (2003-03-12 to 2003-03-21) ~ 02:49:11 UTC
Fetching request 9 of 37 (2003-03-22 to 2003-03-31) ~ 02:49:11 UTC
Fetching request 10 of 37 (2003-04-01 to 2003-04-10) ~ 02:49:11 UTC
Fetching request 11 of 37 (2003-04-11 to 2003-04-20) ~ 02:49:12 UTC
Fetching request 12 of 37 (2003-04-21 to 2003-04-30) ~ 02:49:14 UTC
Fetching request 13 of 37 (2003-05-01 to 2003-05-10) ~ 02:49:16 UTC
Fetching request 14 of 37 (2003-05-11 to 2003-05-20) ~ 02:49:18 UTC
Fetching request 15 of 37 (2003-05-21 to 2003-05-30) ~ 02:49:21 UTC
Fetching request 16 of 37 (2003-05-31 to 2003-06-09) ~ 02:49:23 UTC
Fetching request 17 of 37 (2003-06-10 to 2003-06-19) ~ 02:49:26 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2003_nc/a63c9958ded16f022003eb1ec51f8b09.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2004-01-01 to 2004-01-10) ~ 02:49:34 UTC
Fetching request 2 of 37 (2004-01-11 to 2004-01-20) ~ 02:49:38 UTC
Fetching request 3 of 37 (2004-01-21 to 2004-01-30) ~ 02:49:41 UTC
Fetching request 4 of 37 (2004-01-31 to 2004-02-09) ~ 02:49:45 UTC
Fetching request 5 of 37 (2004-02-10 to 2004-02-19) ~ 02:49:49 UTC
Fetching request 6 of 37 (2004-02-20 to 2004-02-29) ~ 02:49:52 UTC
Fetching request 7 of 37 (2004-03-01 to 2004-03-10) ~ 02:49:55 UTC
Fetching request 8 of 37 (2004-03-11 to 2004-03-20) ~ 02:49:59 UTC
Fetching request 9 of 37 (2004-03-21 to 2004-03-30) ~ 02:50:11 UTC
Fetching request 10 of 37 (2004-03-31 to 2004-04-09) ~ 02:50:19 UTC
Fetching request 11 of 37 (2004-04-10 to 2004-04-19) ~ 02:50:32 UTC
Fetching request 12 of 37 (2004-04-20 to 2004-04-29) ~ 02:50:35 UTC
Fetching request 13 of 37 (2004-04-30 to 2004-05-09) ~ 02:50:39 UTC
Fetching request 14 of 37 (2004-05-10 to 2004-05-19) ~ 02:50:46 UTC
Fetching request 15 of 37 (2004-05-20 to 2004-05-29) ~ 02:50:59 UTC
Fetching request 16 of 37 (2004-05-30 to 2004-06-08) ~ 02:51:01 UTC
Fetching request 17 of 37 (2004-06-09 to 2004-06-18) ~ 02:51:04 UTC
Fetching request 18 of 37 (2004-06-19 to 2004-06-28) ~ 02:51:10 UTC
Fetching request 19 of 37 (2004-06-29 to 2004-07-08) ~ 02:51:13 UTC
Fetching request 20 of 37 (2004-07-09 to 2004-07-18) ~ 02:51:15 UTC
Fetching request 21 of 37 (2004-07-19 to 2004-07-28) ~ 02:51:18 UTC
Fetching request 22 of 37 (2004-07-29 to 2004-08-07) ~ 02:51:35 UTC
Fetching request 23 of 37 (2004-08-08 to 2004-08-17) ~ 02:51:47 UTC
Fetching request 24 of 37 (2004-08-18 to 2004-08-27) ~ 02:51:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2004_nc/79e784e09d2314b54efa55a554d4289c.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2005-01-01 to 2005-01-10) ~ 02:51:57 UTC
Fetching request 2 of 37 (2005-01-11 to 2005-01-20) ~ 02:52:08 UTC
Fetching request 3 of 37 (2005-01-21 to 2005-01-30) ~ 02:52:11 UTC
Fetching request 4 of 37 (2005-01-31 to 2005-02-09) ~ 02:52:13 UTC
Fetching request 5 of 37 (2005-02-10 to 2005-02-19) ~ 02:52:16 UTC
Fetching request 6 of 37 (2005-02-20 to 2005-03-01) ~ 02:52:18 UTC
Fetching request 7 of 37 (2005-03-02 to 2005-03-11) ~ 02:52:25 UTC
Fetching request 8 of 37 (2005-03-12 to 2005-03-21) ~ 02:52:37 UTC
Fetching request 9 of 37 (2005-03-22 to 2005-03-31) ~ 02:52:40 UTC
Fetching request 10 of 37 (2005-04-01 to 2005-04-10) ~ 02:52:43 UTC
Fetching request 11 of 37 (2005-04-11 to 2005-04-20) ~ 02:52:45 UTC
Fetching request 12 of 37 (2005-04-21 to 2005-04-30) ~ 02:52:48 UTC
Fetching request 13 of 37 (2005-05-01 to 2005-05-10) ~ 02:52:50 UTC
Fetching request 14 of 37 (2005-05-11 to 2005-05-20) ~ 02:52:52 UTC
Fetching request 15 of 37 (2005-05-21 to 2005-05-30) ~ 02:52:54 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/6b51a495d363fada6011d23c02cc7da9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/6b51a495d363fada6011d23c02cc7da9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/6b51a495d363fada6011d23c02cc7da9.nc (return_on_error= FALSE )
RETRYing...
Fetching request 16 of 37 (2005-05-31 to 2005-06-09) ~ 02:53:01 UTC
Fetching request 17 of 37 (2005-06-10 to 2005-06-19) ~ 02:53:03 UTC
Fetching request 18 of 37 (2005-06-20 to 2005-06-29) ~ 02:53:05 UTC
Fetching request 19 of 37 (2005-06-30 to 2005-07-09) ~ 02:53:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/1ff105b6230210274c0fe960db34dd44.nc (return_on_error= FALSE )
RETRYing...
Fetching request 20 of 37 (2005-07-10 to 2005-07-19) ~ 02:53:10 UTC
Fetching request 21 of 37 (2005-07-20 to 2005-07-29) ~ 02:53:12 UTC
Fetching request 22 of 37 (2005-07-30 to 2005-08-08) ~ 02:53:14 UTC
Fetching request 23 of 37 (2005-08-09 to 2005-08-18) ~ 02:53:16 UTC
Fetching request 24 of 37 (2005-08-19 to 2005-08-28) ~ 02:53:18 UTC
Fetching request 25 of 37 (2005-08-29 to 2005-09-07) ~ 02:53:20 UTC
Fetching request 26 of 37 (2005-09-08 to 2005-09-17) ~ 02:53:22 UTC
Fetching request 27 of 37 (2005-09-18 to 2005-09-27) ~ 02:53:25 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/faef7a31ca73a9e8cf719d724b194ef5.nc (return_on_error= FALSE )
RETRYing...
Fetching request 28 of 37 (2005-09-28 to 2005-10-07) ~ 02:53:27 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/bbf7e8d96cd40cf437e5554c3f9b3588.nc (return_on_error= FALSE )
RETRYing...
Fetching request 29 of 37 (2005-10-08 to 2005-10-17) ~ 02:53:30 UTC
Fetching request 30 of 37 (2005-10-18 to 2005-10-27) ~ 02:53:31 UTC
Fetching request 31 of 37 (2005-10-28 to 2005-11-06) ~ 02:53:33 UTC
Fetching request 32 of 37 (2005-11-07 to 2005-11-16) ~ 02:53:36 UTC
Fetching request 33 of 37 (2005-11-17 to 2005-11-26) ~ 02:53:38 UTC
Fetching request 34 of 37 (2005-11-27 to 2005-12-06) ~ 02:53:40 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2005_nc/4a3eb0a248b1e62ffa4f6e29edd64a25.nc (return_on_error= FALSE )
RETRYing...
Fetching request 35 of 37 (2005-12-07 to 2005-12-16) ~ 02:53:42 UTC
Fetching request 36 of 37 (2005-12-17 to 2005-12-26) ~ 02:53:45 UTC
Fetching request 37 of 37 (2005-12-27 to 2005-12-31) ~ 02:53:47 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2006-01-01 to 2006-01-10) ~ 02:53:54 UTC
Fetching request 2 of 37 (2006-01-11 to 2006-01-20) ~ 02:53:56 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/58901f63053ff69f9e2f3d0cbd15b501.nc (return_on_error= FALSE )
RETRYing...
Fetching request 3 of 37 (2006-01-21 to 2006-01-30) ~ 02:53:58 UTC
Fetching request 4 of 37 (2006-01-31 to 2006-02-09) ~ 02:54:00 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/edbf5065f67f290b7815685c9dddc79e.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 37 (2006-02-10 to 2006-02-19) ~ 02:54:02 UTC
Fetching request 6 of 37 (2006-02-20 to 2006-03-01) ~ 02:54:03 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/f018ea45dbca1d6bda037d3c310f5b50.nc (return_on_error= FALSE )
RETRYing...
Fetching request 7 of 37 (2006-03-02 to 2006-03-11) ~ 02:54:06 UTC
Fetching request 8 of 37 (2006-03-12 to 2006-03-21) ~ 02:54:07 UTC
Fetching request 9 of 37 (2006-03-22 to 2006-03-31) ~ 02:54:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/fb8c7c3e164312df26274de5d5cf99c2.nc (return_on_error= FALSE )
RETRYing...
Fetching request 10 of 37 (2006-04-01 to 2006-04-10) ~ 02:54:11 UTC
Fetching request 11 of 37 (2006-04-11 to 2006-04-20) ~ 02:54:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/9617ed72d9b2fada9c7d4d8bbcdcf1f5.nc (return_on_error= FALSE )
RETRYing...
Fetching request 12 of 37 (2006-04-21 to 2006-04-30) ~ 02:54:15 UTC
Fetching request 13 of 37 (2006-05-01 to 2006-05-10) ~ 02:54:16 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/df45c0f57ae3ac97031d7672195ab6fa.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/df45c0f57ae3ac97031d7672195ab6fa.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/df45c0f57ae3ac97031d7672195ab6fa.nc (return_on_error= FALSE )
RETRYing...
Fetching request 14 of 37 (2006-05-11 to 2006-05-20) ~ 02:54:17 UTC
Fetching request 15 of 37 (2006-05-21 to 2006-05-30) ~ 02:54:19 UTC
Fetching request 16 of 37 (2006-05-31 to 2006-06-09) ~ 02:54:21 UTC
Fetching request 17 of 37 (2006-06-10 to 2006-06-19) ~ 02:54:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/b45b203a4dd9ffd25ca3196d3ab08e3c.nc (return_on_error= FALSE )
RETRYing...
Fetching request 18 of 37 (2006-06-20 to 2006-06-29) ~ 02:54:26 UTC
Fetching request 19 of 37 (2006-06-30 to 2006-07-09) ~ 02:54:27 UTC
Fetching request 20 of 37 (2006-07-10 to 2006-07-19) ~ 02:54:28 UTC
Fetching request 21 of 37 (2006-07-20 to 2006-07-29) ~ 02:54:30 UTC
Fetching request 22 of 37 (2006-07-30 to 2006-08-08) ~ 02:54:33 UTC
Fetching request 23 of 37 (2006-08-09 to 2006-08-18) ~ 02:54:35 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/4bff8e538dd1db498de746e5510a1868.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/4bff8e538dd1db498de746e5510a1868.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/4bff8e538dd1db498de746e5510a1868.nc (return_on_error= FALSE )
RETRYing...
Fetching request 24 of 37 (2006-08-19 to 2006-08-28) ~ 02:54:38 UTC
Fetching request 25 of 37 (2006-08-29 to 2006-09-07) ~ 02:54:39 UTC
Fetching request 26 of 37 (2006-09-08 to 2006-09-17) ~ 02:54:41 UTC
Fetching request 27 of 37 (2006-09-18 to 2006-09-27) ~ 02:54:43 UTC
Fetching request 28 of 37 (2006-09-28 to 2006-10-07) ~ 02:54:45 UTC
Fetching request 29 of 37 (2006-10-08 to 2006-10-17) ~ 02:54:49 UTC
Fetching request 30 of 37 (2006-10-18 to 2006-10-27) ~ 02:54:51 UTC
Fetching request 31 of 37 (2006-10-28 to 2006-11-06) ~ 02:54:52 UTC
Fetching request 32 of 37 (2006-11-07 to 2006-11-16) ~ 02:54:55 UTC
Fetching request 33 of 37 (2006-11-17 to 2006-11-26) ~ 02:54:57 UTC
Fetching request 34 of 37 (2006-11-27 to 2006-12-06) ~ 02:54:59 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/7e1065d4f6b8e7a58d7d6023d9082976.nc (return_on_error= FALSE )
RETRYing...
Fetching request 35 of 37 (2006-12-07 to 2006-12-16) ~ 02:55:02 UTC
Fetching request 36 of 37 (2006-12-17 to 2006-12-26) ~ 02:55:03 UTC
Fetching request 37 of 37 (2006-12-27 to 2006-12-31) ~ 02:55:05 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2006_nc/75cb7f1f5fd45da6dd48ceb0f5792223.nc (return_on_error= FALSE )
RETRYing...
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2007-01-01 to 2007-01-10) ~ 02:55:15 UTC
Fetching request 2 of 37 (2007-01-11 to 2007-01-20) ~ 02:55:16 UTC
Fetching request 3 of 37 (2007-01-21 to 2007-01-30) ~ 02:55:18 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2007_nc/a7a9dd635828ee6fa2c50ee887ad165b.nc (return_on_error= FALSE )
RETRYing...
Fetching request 4 of 37 (2007-01-31 to 2007-02-09) ~ 02:55:21 UTC
Fetching request 5 of 37 (2007-02-10 to 2007-02-19) ~ 02:55:23 UTC
Fetching request 6 of 37 (2007-02-20 to 2007-03-01) ~ 02:55:27 UTC
Fetching request 7 of 37 (2007-03-02 to 2007-03-11) ~ 02:55:29 UTC
Fetching request 8 of 37 (2007-03-12 to 2007-03-21) ~ 02:55:32 UTC
Fetching request 9 of 37 (2007-03-22 to 2007-03-31) ~ 02:55:34 UTC
Fetching request 10 of 37 (2007-04-01 to 2007-04-10) ~ 02:55:37 UTC
Fetching request 11 of 37 (2007-04-11 to 2007-04-20) ~ 02:55:40 UTC
Fetching request 12 of 37 (2007-04-21 to 2007-04-30) ~ 02:55:43 UTC
Fetching request 13 of 37 (2007-05-01 to 2007-05-10) ~ 02:55:46 UTC
Fetching request 14 of 37 (2007-05-11 to 2007-05-20) ~ 02:55:50 UTC
Fetching request 15 of 37 (2007-05-21 to 2007-05-30) ~ 02:55:52 UTC
Fetching request 16 of 37 (2007-05-31 to 2007-06-09) ~ 02:55:55 UTC
Fetching request 17 of 37 (2007-06-10 to 2007-06-19) ~ 02:55:57 UTC
Fetching request 18 of 37 (2007-06-20 to 2007-06-29) ~ 02:56:01 UTC
Fetching request 19 of 37 (2007-06-30 to 2007-07-09) ~ 02:56:04 UTC
Fetching request 20 of 37 (2007-07-10 to 2007-07-19) ~ 02:56:07 UTC
Fetching request 21 of 37 (2007-07-20 to 2007-07-29) ~ 02:56:11 UTC
Fetching request 22 of 37 (2007-07-30 to 2007-08-08) ~ 02:56:14 UTC
Fetching request 23 of 37 (2007-08-09 to 2007-08-18) ~ 02:56:19 UTC
Fetching request 24 of 37 (2007-08-19 to 2007-08-28) ~ 02:56:22 UTC
Fetching request 25 of 37 (2007-08-29 to 2007-09-07) ~ 02:56:25 UTC
Fetching request 26 of 37 (2007-09-08 to 2007-09-17) ~ 02:56:29 UTC
Fetching request 27 of 37 (2007-09-18 to 2007-09-27) ~ 02:56:33 UTC
Fetching request 28 of 37 (2007-09-28 to 2007-10-07) ~ 02:56:35 UTC
Fetching request 29 of 37 (2007-10-08 to 2007-10-17) ~ 02:56:39 UTC
Fetching request 30 of 37 (2007-10-18 to 2007-10-27) ~ 02:56:42 UTC
Fetching request 31 of 37 (2007-10-28 to 2007-11-06) ~ 02:56:46 UTC
Fetching request 32 of 37 (2007-11-07 to 2007-11-16) ~ 02:56:51 UTC
Fetching request 33 of 37 (2007-11-17 to 2007-11-26) ~ 02:56:54 UTC
Fetching request 34 of 37 (2007-11-27 to 2007-12-06) ~ 02:57:10 UTC
Fetching request 35 of 37 (2007-12-07 to 2007-12-16) ~ 02:57:13 UTC
Fetching request 36 of 37 (2007-12-17 to 2007-12-26) ~ 02:57:25 UTC
Fetching request 37 of 37 (2007-12-27 to 2007-12-31) ~ 02:57:32 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2008-01-01 to 2008-01-10) ~ 02:57:41 UTC
Fetching request 2 of 37 (2008-01-11 to 2008-01-20) ~ 02:57:41 UTC
Fetching request 3 of 37 (2008-01-21 to 2008-01-30) ~ 02:57:41 UTC
Fetching request 4 of 37 (2008-01-31 to 2008-02-09) ~ 02:57:41 UTC
Fetching request 5 of 37 (2008-02-10 to 2008-02-19) ~ 02:57:42 UTC
Fetching request 6 of 37 (2008-02-20 to 2008-02-29) ~ 02:57:42 UTC
Fetching request 7 of 37 (2008-03-01 to 2008-03-10) ~ 02:57:42 UTC
Fetching request 8 of 37 (2008-03-11 to 2008-03-20) ~ 02:57:42 UTC
Fetching request 9 of 37 (2008-03-21 to 2008-03-30) ~ 02:57:42 UTC
Fetching request 10 of 37 (2008-03-31 to 2008-04-09) ~ 02:57:43 UTC
Fetching request 11 of 37 (2008-04-10 to 2008-04-19) ~ 02:57:43 UTC
Fetching request 12 of 37 (2008-04-20 to 2008-04-29) ~ 02:57:43 UTC
Fetching request 13 of 37 (2008-04-30 to 2008-05-09) ~ 02:57:43 UTC
Fetching request 14 of 37 (2008-05-10 to 2008-05-19) ~ 02:57:43 UTC
Fetching request 15 of 37 (2008-05-20 to 2008-05-29) ~ 02:57:44 UTC
Fetching request 16 of 37 (2008-05-30 to 2008-06-08) ~ 02:57:44 UTC
Fetching request 17 of 37 (2008-06-09 to 2008-06-18) ~ 02:57:44 UTC
Fetching request 18 of 37 (2008-06-19 to 2008-06-28) ~ 02:57:45 UTC
Fetching request 19 of 37 (2008-06-29 to 2008-07-08) ~ 02:57:45 UTC
Fetching request 20 of 37 (2008-07-09 to 2008-07-18) ~ 02:57:45 UTC
Fetching request 21 of 37 (2008-07-19 to 2008-07-28) ~ 02:57:45 UTC
Fetching request 22 of 37 (2008-07-29 to 2008-08-07) ~ 02:57:45 UTC
Fetching request 23 of 37 (2008-08-08 to 2008-08-17) ~ 02:57:45 UTC
Fetching request 24 of 37 (2008-08-18 to 2008-08-27) ~ 02:57:46 UTC
Fetching request 25 of 37 (2008-08-28 to 2008-09-06) ~ 02:57:46 UTC
Fetching request 26 of 37 (2008-09-07 to 2008-09-16) ~ 02:57:47 UTC
Fetching request 27 of 37 (2008-09-17 to 2008-09-26) ~ 02:57:47 UTC
Fetching request 28 of 37 (2008-09-27 to 2008-10-06) ~ 02:57:47 UTC
Fetching request 29 of 37 (2008-10-07 to 2008-10-16) ~ 02:57:47 UTC
Fetching request 30 of 37 (2008-10-17 to 2008-10-26) ~ 02:57:48 UTC
Fetching request 31 of 37 (2008-10-27 to 2008-11-05) ~ 02:57:48 UTC
Fetching request 32 of 37 (2008-11-06 to 2008-11-15) ~ 02:57:48 UTC
Fetching request 33 of 37 (2008-11-16 to 2008-11-25) ~ 02:57:49 UTC
Fetching request 34 of 37 (2008-11-26 to 2008-12-05) ~ 02:57:50 UTC
Fetching request 35 of 37 (2008-12-06 to 2008-12-15) ~ 02:57:53 UTC
Fetching request 36 of 37 (2008-12-16 to 2008-12-25) ~ 02:57:57 UTC
Fetching request 37 of 37 (2008-12-26 to 2008-12-31) ~ 02:58:00 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2009-01-01 to 2009-01-10) ~ 02:58:10 UTC
Fetching request 2 of 37 (2009-01-11 to 2009-01-20) ~ 02:58:10 UTC
Fetching request 3 of 37 (2009-01-21 to 2009-01-30) ~ 02:58:10 UTC
Fetching request 4 of 37 (2009-01-31 to 2009-02-09) ~ 02:58:11 UTC
Fetching request 5 of 37 (2009-02-10 to 2009-02-19) ~ 02:58:11 UTC
Fetching request 6 of 37 (2009-02-20 to 2009-03-01) ~ 02:58:11 UTC
Fetching request 7 of 37 (2009-03-02 to 2009-03-11) ~ 02:58:18 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2009_nc/17f9705ca4ef56f4ebf8525399afbc86.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2010-01-01 to 2010-01-10) ~ 02:58:26 UTC
Fetching request 2 of 37 (2010-01-11 to 2010-01-20) ~ 02:58:31 UTC
Fetching request 3 of 37 (2010-01-21 to 2010-01-30) ~ 02:58:35 UTC
Fetching request 4 of 37 (2010-01-31 to 2010-02-09) ~ 02:58:37 UTC
Fetching request 5 of 37 (2010-02-10 to 2010-02-19) ~ 02:58:45 UTC
Fetching request 6 of 37 (2010-02-20 to 2010-03-01) ~ 02:58:53 UTC
Fetching request 7 of 37 (2010-03-02 to 2010-03-11) ~ 02:58:56 UTC
Fetching request 8 of 37 (2010-03-12 to 2010-03-21) ~ 02:58:59 UTC
Fetching request 9 of 37 (2010-03-22 to 2010-03-31) ~ 02:59:01 UTC
Fetching request 10 of 37 (2010-04-01 to 2010-04-10) ~ 02:59:04 UTC
Fetching request 11 of 37 (2010-04-11 to 2010-04-20) ~ 02:59:06 UTC
Fetching request 12 of 37 (2010-04-21 to 2010-04-30) ~ 02:59:09 UTC
Fetching request 13 of 37 (2010-05-01 to 2010-05-10) ~ 02:59:12 UTC
Fetching request 14 of 37 (2010-05-11 to 2010-05-20) ~ 02:59:14 UTC
Fetching request 15 of 37 (2010-05-21 to 2010-05-30) ~ 02:59:18 UTC
Fetching request 16 of 37 (2010-05-31 to 2010-06-09) ~ 02:59:20 UTC
Fetching request 17 of 37 (2010-06-10 to 2010-06-19) ~ 02:59:23 UTC
Fetching request 18 of 37 (2010-06-20 to 2010-06-29) ~ 02:59:25 UTC
Fetching request 19 of 37 (2010-06-30 to 2010-07-09) ~ 02:59:27 UTC
Fetching request 20 of 37 (2010-07-10 to 2010-07-19) ~ 02:59:29 UTC
Fetching request 21 of 37 (2010-07-20 to 2010-07-29) ~ 02:59:32 UTC
Fetching request 22 of 37 (2010-07-30 to 2010-08-08) ~ 02:59:36 UTC
Fetching request 23 of 37 (2010-08-09 to 2010-08-18) ~ 02:59:38 UTC
Fetching request 24 of 37 (2010-08-19 to 2010-08-28) ~ 02:59:41 UTC
Fetching request 25 of 37 (2010-08-29 to 2010-09-07) ~ 02:59:45 UTC
Fetching request 26 of 37 (2010-09-08 to 2010-09-17) ~ 02:59:48 UTC
Fetching request 27 of 37 (2010-09-18 to 2010-09-27) ~ 02:59:50 UTC
Fetching request 28 of 37 (2010-09-28 to 2010-10-07) ~ 02:59:53 UTC
Fetching request 29 of 37 (2010-10-08 to 2010-10-17) ~ 02:59:56 UTC
Fetching request 30 of 37 (2010-10-18 to 2010-10-27) ~ 02:59:58 UTC
Fetching request 31 of 37 (2010-10-28 to 2010-11-06) ~ 03:00:01 UTC
Fetching request 32 of 37 (2010-11-07 to 2010-11-16) ~ 03:00:03 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/521f1850bd6621bedfc9082ed83b8eee.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/521f1850bd6621bedfc9082ed83b8eee.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/521f1850bd6621bedfc9082ed83b8eee.nc (return_on_error= FALSE )
RETRYing...
Fetching request 33 of 37 (2010-11-17 to 2010-11-26) ~ 03:00:07 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2010_nc/896440be59f87dde921aa02223164159.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2011-01-01 to 2011-01-10) ~ 03:00:19 UTC
Fetching request 2 of 37 (2011-01-11 to 2011-01-20) ~ 03:00:22 UTC
Fetching request 3 of 37 (2011-01-21 to 2011-01-30) ~ 03:00:23 UTC
Fetching request 4 of 37 (2011-01-31 to 2011-02-09) ~ 03:00:26 UTC
Fetching request 5 of 37 (2011-02-10 to 2011-02-19) ~ 03:00:29 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2011_nc/db0187743eec770a71401785e97e8b4e.nc (return_on_error= FALSE )
RETRYing...
Fetching request 6 of 37 (2011-02-20 to 2011-03-01) ~ 03:00:33 UTC
Fetching request 7 of 37 (2011-03-02 to 2011-03-11) ~ 03:00:39 UTC
Fetching request 8 of 37 (2011-03-12 to 2011-03-21) ~ 03:00:45 UTC
Fetching request 9 of 37 (2011-03-22 to 2011-03-31) ~ 03:00:48 UTC
Fetching request 10 of 37 (2011-04-01 to 2011-04-10) ~ 03:00:52 UTC
Fetching request 11 of 37 (2011-04-11 to 2011-04-20) ~ 03:00:55 UTC
Fetching request 12 of 37 (2011-04-21 to 2011-04-30) ~ 03:01:08 UTC
Fetching request 13 of 37 (2011-05-01 to 2011-05-10) ~ 03:01:13 UTC
Fetching request 14 of 37 (2011-05-11 to 2011-05-20) ~ 03:01:15 UTC
Fetching request 15 of 37 (2011-05-21 to 2011-05-30) ~ 03:01:19 UTC
Fetching request 16 of 37 (2011-05-31 to 2011-06-09) ~ 03:01:22 UTC
Fetching request 17 of 37 (2011-06-10 to 2011-06-19) ~ 03:01:24 UTC
Fetching request 18 of 37 (2011-06-20 to 2011-06-29) ~ 03:01:26 UTC
Fetching request 19 of 37 (2011-06-30 to 2011-07-09) ~ 03:01:29 UTC
Fetching request 20 of 37 (2011-07-10 to 2011-07-19) ~ 03:01:32 UTC
Fetching request 21 of 37 (2011-07-20 to 2011-07-29) ~ 03:01:36 UTC
Fetching request 22 of 37 (2011-07-30 to 2011-08-08) ~ 03:01:38 UTC
Fetching request 23 of 37 (2011-08-09 to 2011-08-18) ~ 03:01:40 UTC
Fetching request 24 of 37 (2011-08-19 to 2011-08-28) ~ 03:01:43 UTC
Fetching request 25 of 37 (2011-08-29 to 2011-09-07) ~ 03:01:46 UTC
Fetching request 26 of 37 (2011-09-08 to 2011-09-17) ~ 03:01:49 UTC
Fetching request 27 of 37 (2011-09-18 to 2011-09-27) ~ 03:01:52 UTC
Fetching request 28 of 37 (2011-09-28 to 2011-10-07) ~ 03:01:55 UTC
Fetching request 29 of 37 (2011-10-08 to 2011-10-17) ~ 03:01:58 UTC
Fetching request 30 of 37 (2011-10-18 to 2011-10-27) ~ 03:02:01 UTC
Fetching request 31 of 37 (2011-10-28 to 2011-11-06) ~ 03:02:09 UTC
Fetching request 32 of 37 (2011-11-07 to 2011-11-16) ~ 03:02:19 UTC
Fetching request 33 of 37 (2011-11-17 to 2011-11-26) ~ 03:02:21 UTC
Fetching request 34 of 37 (2011-11-27 to 2011-12-06) ~ 03:02:25 UTC
Fetching request 35 of 37 (2011-12-07 to 2011-12-16) ~ 03:02:28 UTC
Fetching request 36 of 37 (2011-12-17 to 2011-12-26) ~ 03:02:31 UTC
Fetching request 37 of 37 (2011-12-27 to 2011-12-31) ~ 03:02:36 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2012-01-01 to 2012-01-10) ~ 03:02:43 UTC
Fetching request 2 of 37 (2012-01-11 to 2012-01-20) ~ 03:02:44 UTC
Fetching request 3 of 37 (2012-01-21 to 2012-01-30) ~ 03:02:44 UTC
Fetching request 4 of 37 (2012-01-31 to 2012-02-09) ~ 03:02:44 UTC
Fetching request 5 of 37 (2012-02-10 to 2012-02-19) ~ 03:02:44 UTC
Fetching request 6 of 37 (2012-02-20 to 2012-02-29) ~ 03:02:44 UTC
Fetching request 7 of 37 (2012-03-01 to 2012-03-10) ~ 03:02:45 UTC
Fetching request 8 of 37 (2012-03-11 to 2012-03-20) ~ 03:02:45 UTC
Fetching request 9 of 37 (2012-03-21 to 2012-03-30) ~ 03:02:45 UTC
Fetching request 10 of 37 (2012-03-31 to 2012-04-09) ~ 03:02:45 UTC
Fetching request 11 of 37 (2012-04-10 to 2012-04-19) ~ 03:02:45 UTC
Fetching request 12 of 37 (2012-04-20 to 2012-04-29) ~ 03:02:46 UTC
Fetching request 13 of 37 (2012-04-30 to 2012-05-09) ~ 03:02:46 UTC
Fetching request 14 of 37 (2012-05-10 to 2012-05-19) ~ 03:02:46 UTC
Fetching request 15 of 37 (2012-05-20 to 2012-05-29) ~ 03:02:46 UTC
Fetching request 16 of 37 (2012-05-30 to 2012-06-08) ~ 03:02:46 UTC
Fetching request 17 of 37 (2012-06-09 to 2012-06-18) ~ 03:02:46 UTC
Fetching request 18 of 37 (2012-06-19 to 2012-06-28) ~ 03:02:47 UTC
Fetching request 19 of 37 (2012-06-29 to 2012-07-08) ~ 03:02:47 UTC
Fetching request 20 of 37 (2012-07-09 to 2012-07-18) ~ 03:02:47 UTC
Fetching request 21 of 37 (2012-07-19 to 2012-07-28) ~ 03:02:47 UTC
Fetching request 22 of 37 (2012-07-29 to 2012-08-07) ~ 03:02:47 UTC
Fetching request 23 of 37 (2012-08-08 to 2012-08-17) ~ 03:02:48 UTC
Fetching request 24 of 37 (2012-08-18 to 2012-08-27) ~ 03:02:48 UTC
Fetching request 25 of 37 (2012-08-28 to 2012-09-06) ~ 03:02:48 UTC
Fetching request 26 of 37 (2012-09-07 to 2012-09-16) ~ 03:02:48 UTC
Fetching request 27 of 37 (2012-09-17 to 2012-09-26) ~ 03:02:48 UTC
Fetching request 28 of 37 (2012-09-27 to 2012-10-06) ~ 03:02:49 UTC
Fetching request 29 of 37 (2012-10-07 to 2012-10-16) ~ 03:02:49 UTC
Fetching request 30 of 37 (2012-10-17 to 2012-10-26) ~ 03:02:49 UTC
Fetching request 31 of 37 (2012-10-27 to 2012-11-05) ~ 03:02:49 UTC
Fetching request 32 of 37 (2012-11-06 to 2012-11-15) ~ 03:02:49 UTC
Fetching request 33 of 37 (2012-11-16 to 2012-11-25) ~ 03:02:50 UTC
Fetching request 34 of 37 (2012-11-26 to 2012-12-05) ~ 03:02:50 UTC
Fetching request 35 of 37 (2012-12-06 to 2012-12-15) ~ 03:02:52 UTC
Fetching request 36 of 37 (2012-12-16 to 2012-12-25) ~ 03:03:06 UTC
Fetching request 37 of 37 (2012-12-26 to 2012-12-31) ~ 03:03:13 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2013-01-01 to 2013-01-10) ~ 03:03:21 UTC
Fetching request 2 of 37 (2013-01-11 to 2013-01-20) ~ 03:03:22 UTC
Fetching request 3 of 37 (2013-01-21 to 2013-01-30) ~ 03:03:22 UTC
Fetching request 4 of 37 (2013-01-31 to 2013-02-09) ~ 03:03:22 UTC
Fetching request 5 of 37 (2013-02-10 to 2013-02-19) ~ 03:03:22 UTC
Fetching request 6 of 37 (2013-02-20 to 2013-03-01) ~ 03:03:23 UTC
Fetching request 7 of 37 (2013-03-02 to 2013-03-11) ~ 03:03:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/f52567581030f7604daaecc347f7b8b4.nc (return_on_error= FALSE )
RETRYing...
Fetching request 8 of 37 (2013-03-12 to 2013-03-21) ~ 03:03:26 UTC
Fetching request 9 of 37 (2013-03-22 to 2013-03-31) ~ 03:03:28 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2013_nc/82d638268c7a9dc7626554ebdfee6281.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2014-01-01 to 2014-01-10) ~ 03:03:35 UTC
Fetching request 2 of 37 (2014-01-11 to 2014-01-20) ~ 03:03:39 UTC
Fetching request 3 of 37 (2014-01-21 to 2014-01-30) ~ 03:03:41 UTC
Fetching request 4 of 37 (2014-01-31 to 2014-02-09) ~ 03:03:44 UTC
Fetching request 5 of 37 (2014-02-10 to 2014-02-19) ~ 03:03:47 UTC
Fetching request 6 of 37 (2014-02-20 to 2014-03-01) ~ 03:03:50 UTC
Fetching request 7 of 37 (2014-03-02 to 2014-03-11) ~ 03:03:54 UTC
Fetching request 8 of 37 (2014-03-12 to 2014-03-21) ~ 03:03:59 UTC
Fetching request 9 of 37 (2014-03-22 to 2014-03-31) ~ 03:04:02 UTC
Fetching request 10 of 37 (2014-04-01 to 2014-04-10) ~ 03:04:14 UTC
Fetching request 11 of 37 (2014-04-11 to 2014-04-20) ~ 03:04:21 UTC
Fetching request 12 of 37 (2014-04-21 to 2014-04-30) ~ 03:04:23 UTC
Fetching request 13 of 37 (2014-05-01 to 2014-05-10) ~ 03:04:27 UTC
Fetching request 14 of 37 (2014-05-11 to 2014-05-20) ~ 03:04:30 UTC
Fetching request 15 of 37 (2014-05-21 to 2014-05-30) ~ 03:04:32 UTC
Fetching request 16 of 37 (2014-05-31 to 2014-06-09) ~ 03:04:35 UTC
Fetching request 17 of 37 (2014-06-10 to 2014-06-19) ~ 03:04:39 UTC
Fetching request 18 of 37 (2014-06-20 to 2014-06-29) ~ 03:04:42 UTC
Fetching request 19 of 37 (2014-06-30 to 2014-07-09) ~ 03:04:45 UTC
Fetching request 20 of 37 (2014-07-10 to 2014-07-19) ~ 03:04:48 UTC
Fetching request 21 of 37 (2014-07-20 to 2014-07-29) ~ 03:04:51 UTC
Fetching request 22 of 37 (2014-07-30 to 2014-08-08) ~ 03:04:54 UTC
Fetching request 23 of 37 (2014-08-09 to 2014-08-18) ~ 03:04:57 UTC
Fetching request 24 of 37 (2014-08-19 to 2014-08-28) ~ 03:05:00 UTC
Fetching request 25 of 37 (2014-08-29 to 2014-09-07) ~ 03:05:12 UTC
Fetching request 26 of 37 (2014-09-08 to 2014-09-17) ~ 03:05:27 UTC
Fetching request 27 of 37 (2014-09-18 to 2014-09-27) ~ 03:05:32 UTC
Fetching request 28 of 37 (2014-09-28 to 2014-10-07) ~ 03:05:34 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2014_nc/8fadda1ce22808af6c9033d6f9d32a1a.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2015-01-01 to 2015-01-10) ~ 03:05:46 UTC
Fetching request 2 of 37 (2015-01-11 to 2015-01-20) ~ 03:06:08 UTC
Fetching request 3 of 37 (2015-01-21 to 2015-01-30) ~ 03:06:13 UTC
Fetching request 4 of 37 (2015-01-31 to 2015-02-09) ~ 03:06:32 UTC
Fetching request 5 of 37 (2015-02-10 to 2015-02-19) ~ 03:06:35 UTC
Fetching request 6 of 37 (2015-02-20 to 2015-03-01) ~ 03:06:38 UTC
Fetching request 7 of 37 (2015-03-02 to 2015-03-11) ~ 03:06:46 UTC
Fetching request 8 of 37 (2015-03-12 to 2015-03-21) ~ 03:06:50 UTC
Fetching request 9 of 37 (2015-03-22 to 2015-03-31) ~ 03:06:52 UTC
Fetching request 10 of 37 (2015-04-01 to 2015-04-10) ~ 03:06:55 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2015_nc/b120690db8a4f88e86523d163c7704bf.nc (return_on_error= FALSE )
RETRYing...
Fetching request 11 of 37 (2015-04-11 to 2015-04-20) ~ 03:07:01 UTC
Fetching request 12 of 37 (2015-04-21 to 2015-04-30) ~ 03:07:03 UTC
Fetching request 13 of 37 (2015-05-01 to 2015-05-10) ~ 03:07:06 UTC
Fetching request 14 of 37 (2015-05-11 to 2015-05-20) ~ 03:07:10 UTC
Fetching request 15 of 37 (2015-05-21 to 2015-05-30) ~ 03:07:13 UTC
Fetching request 16 of 37 (2015-05-31 to 2015-06-09) ~ 03:07:16 UTC
Fetching request 17 of 37 (2015-06-10 to 2015-06-19) ~ 03:07:18 UTC
Fetching request 18 of 37 (2015-06-20 to 2015-06-29) ~ 03:07:22 UTC
Fetching request 19 of 37 (2015-06-30 to 2015-07-09) ~ 03:07:25 UTC
Fetching request 20 of 37 (2015-07-10 to 2015-07-19) ~ 03:07:28 UTC
Fetching request 21 of 37 (2015-07-20 to 2015-07-29) ~ 03:07:40 UTC
Fetching request 22 of 37 (2015-07-30 to 2015-08-08) ~ 03:07:43 UTC
Fetching request 23 of 37 (2015-08-09 to 2015-08-18) ~ 03:07:45 UTC
Fetching request 24 of 37 (2015-08-19 to 2015-08-28) ~ 03:07:51 UTC
Fetching request 25 of 37 (2015-08-29 to 2015-09-07) ~ 03:07:54 UTC
Fetching request 26 of 37 (2015-09-08 to 2015-09-17) ~ 03:07:57 UTC
Fetching request 27 of 37 (2015-09-18 to 2015-09-27) ~ 03:08:00 UTC
Fetching request 28 of 37 (2015-09-28 to 2015-10-07) ~ 03:08:03 UTC
Fetching request 29 of 37 (2015-10-08 to 2015-10-17) ~ 03:08:07 UTC
Fetching request 30 of 37 (2015-10-18 to 2015-10-27) ~ 03:08:11 UTC
Fetching request 31 of 37 (2015-10-28 to 2015-11-06) ~ 03:08:14 UTC
Fetching request 32 of 37 (2015-11-07 to 2015-11-16) ~ 03:08:19 UTC
Fetching request 33 of 37 (2015-11-17 to 2015-11-26) ~ 03:08:23 UTC
Fetching request 34 of 37 (2015-11-27 to 2015-12-06) ~ 03:08:26 UTC
Fetching request 35 of 37 (2015-12-07 to 2015-12-16) ~ 03:08:28 UTC
Fetching request 36 of 37 (2015-12-17 to 2015-12-26) ~ 03:08:31 UTC
Fetching request 37 of 37 (2015-12-27 to 2015-12-31) ~ 03:08:34 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2016-01-01 to 2016-01-10) ~ 03:08:44 UTC
Fetching request 2 of 37 (2016-01-11 to 2016-01-20) ~ 03:08:44 UTC
Fetching request 3 of 37 (2016-01-21 to 2016-01-30) ~ 03:08:44 UTC
Fetching request 4 of 37 (2016-01-31 to 2016-02-09) ~ 03:08:44 UTC
Fetching request 5 of 37 (2016-02-10 to 2016-02-19) ~ 03:08:45 UTC
Fetching request 6 of 37 (2016-02-20 to 2016-02-29) ~ 03:08:45 UTC
Fetching request 7 of 37 (2016-03-01 to 2016-03-10) ~ 03:08:45 UTC
Fetching request 8 of 37 (2016-03-11 to 2016-03-20) ~ 03:08:45 UTC
Fetching request 9 of 37 (2016-03-21 to 2016-03-30) ~ 03:08:45 UTC
Fetching request 10 of 37 (2016-03-31 to 2016-04-09) ~ 03:08:46 UTC
Fetching request 11 of 37 (2016-04-10 to 2016-04-19) ~ 03:08:46 UTC
Fetching request 12 of 37 (2016-04-20 to 2016-04-29) ~ 03:08:46 UTC
Fetching request 13 of 37 (2016-04-30 to 2016-05-09) ~ 03:08:46 UTC
Fetching request 14 of 37 (2016-05-10 to 2016-05-19) ~ 03:08:46 UTC
Fetching request 15 of 37 (2016-05-20 to 2016-05-29) ~ 03:08:47 UTC
Fetching request 16 of 37 (2016-05-30 to 2016-06-08) ~ 03:08:47 UTC
Fetching request 17 of 37 (2016-06-09 to 2016-06-18) ~ 03:08:47 UTC
Fetching request 18 of 37 (2016-06-19 to 2016-06-28) ~ 03:08:47 UTC
Fetching request 19 of 37 (2016-06-29 to 2016-07-08) ~ 03:08:47 UTC
Fetching request 20 of 37 (2016-07-09 to 2016-07-18) ~ 03:08:47 UTC
Fetching request 21 of 37 (2016-07-19 to 2016-07-28) ~ 03:08:48 UTC
Fetching request 22 of 37 (2016-07-29 to 2016-08-07) ~ 03:08:48 UTC
Fetching request 23 of 37 (2016-08-08 to 2016-08-17) ~ 03:08:48 UTC
Fetching request 24 of 37 (2016-08-18 to 2016-08-27) ~ 03:08:48 UTC
Fetching request 25 of 37 (2016-08-28 to 2016-09-06) ~ 03:08:49 UTC
Fetching request 26 of 37 (2016-09-07 to 2016-09-16) ~ 03:08:52 UTC
Fetching request 27 of 37 (2016-09-17 to 2016-09-26) ~ 03:08:57 UTC
Fetching request 28 of 37 (2016-09-27 to 2016-10-06) ~ 03:09:00 UTC
Fetching request 29 of 37 (2016-10-07 to 2016-10-16) ~ 03:09:04 UTC
Fetching request 30 of 37 (2016-10-17 to 2016-10-26) ~ 03:09:10 UTC
Fetching request 31 of 37 (2016-10-27 to 2016-11-05) ~ 03:09:15 UTC
Fetching request 32 of 37 (2016-11-06 to 2016-11-15) ~ 03:09:19 UTC
Fetching request 33 of 37 (2016-11-16 to 2016-11-25) ~ 03:09:27 UTC
Fetching request 34 of 37 (2016-11-26 to 2016-12-05) ~ 03:09:34 UTC
Fetching request 35 of 37 (2016-12-06 to 2016-12-15) ~ 03:09:38 UTC
Fetching request 36 of 37 (2016-12-16 to 2016-12-25) ~ 03:09:45 UTC
Fetching request 37 of 37 (2016-12-26 to 2016-12-31) ~ 03:09:51 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2017-01-01 to 2017-01-10) ~ 03:09:59 UTC
Fetching request 2 of 37 (2017-01-11 to 2017-01-20) ~ 03:09:59 UTC
Fetching request 3 of 37 (2017-01-21 to 2017-01-30) ~ 03:10:00 UTC
Fetching request 4 of 37 (2017-01-31 to 2017-02-09) ~ 03:10:00 UTC
Fetching request 5 of 37 (2017-02-10 to 2017-02-19) ~ 03:10:00 UTC
Fetching request 6 of 37 (2017-02-20 to 2017-03-01) ~ 03:10:00 UTC
Fetching request 7 of 37 (2017-03-02 to 2017-03-11) ~ 03:10:00 UTC
Fetching request 8 of 37 (2017-03-12 to 2017-03-21) ~ 03:10:01 UTC
Fetching request 9 of 37 (2017-03-22 to 2017-03-31) ~ 03:10:01 UTC
Fetching request 10 of 37 (2017-04-01 to 2017-04-10) ~ 03:10:01 UTC
Fetching request 11 of 37 (2017-04-11 to 2017-04-20) ~ 03:10:01 UTC
Fetching request 12 of 37 (2017-04-21 to 2017-04-30) ~ 03:10:01 UTC
Fetching request 13 of 37 (2017-05-01 to 2017-05-10) ~ 03:10:02 UTC
Fetching request 14 of 37 (2017-05-11 to 2017-05-20) ~ 03:10:02 UTC
Fetching request 15 of 37 (2017-05-21 to 2017-05-30) ~ 03:10:03 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2017_nc/d30ff5eed563efad9271ac61f106f068.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2018-01-01 to 2018-01-10) ~ 03:10:11 UTC
Fetching request 2 of 37 (2018-01-11 to 2018-01-20) ~ 03:10:15 UTC
Fetching request 3 of 37 (2018-01-21 to 2018-01-30) ~ 03:10:19 UTC
Fetching request 4 of 37 (2018-01-31 to 2018-02-09) ~ 03:10:24 UTC
Fetching request 5 of 37 (2018-02-10 to 2018-02-19) ~ 03:10:30 UTC
Fetching request 6 of 37 (2018-02-20 to 2018-03-01) ~ 03:10:33 UTC
Fetching request 7 of 37 (2018-03-02 to 2018-03-11) ~ 03:10:39 UTC
Fetching request 8 of 37 (2018-03-12 to 2018-03-21) ~ 03:10:44 UTC
Fetching request 9 of 37 (2018-03-22 to 2018-03-31) ~ 03:10:47 UTC
Fetching request 10 of 37 (2018-04-01 to 2018-04-10) ~ 03:10:51 UTC
Fetching request 11 of 37 (2018-04-11 to 2018-04-20) ~ 03:10:54 UTC
Fetching request 12 of 37 (2018-04-21 to 2018-04-30) ~ 03:10:58 UTC
Fetching request 13 of 37 (2018-05-01 to 2018-05-10) ~ 03:11:03 UTC
Fetching request 14 of 37 (2018-05-11 to 2018-05-20) ~ 03:11:08 UTC
Fetching request 15 of 37 (2018-05-21 to 2018-05-30) ~ 03:11:14 UTC
Fetching request 16 of 37 (2018-05-31 to 2018-06-09) ~ 03:11:19 UTC
Fetching request 17 of 37 (2018-06-10 to 2018-06-19) ~ 03:11:22 UTC
Fetching request 18 of 37 (2018-06-20 to 2018-06-29) ~ 03:11:26 UTC
Fetching request 19 of 37 (2018-06-30 to 2018-07-09) ~ 03:11:30 UTC
Fetching request 20 of 37 (2018-07-10 to 2018-07-19) ~ 03:11:36 UTC
Fetching request 21 of 37 (2018-07-20 to 2018-07-29) ~ 03:11:41 UTC
Fetching request 22 of 37 (2018-07-30 to 2018-08-08) ~ 03:11:43 UTC
Fetching request 23 of 37 (2018-08-09 to 2018-08-18) ~ 03:11:48 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2018_nc/5fe426e9421e90876055801d107323ed.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2019-01-01 to 2019-01-10) ~ 03:12:01 UTC
Fetching request 2 of 37 (2019-01-11 to 2019-01-20) ~ 03:12:05 UTC
Fetching request 3 of 37 (2019-01-21 to 2019-01-30) ~ 03:12:09 UTC
Fetching request 4 of 37 (2019-01-31 to 2019-02-09) ~ 03:12:13 UTC
Fetching request 5 of 37 (2019-02-10 to 2019-02-19) ~ 03:12:20 UTC
Fetching request 6 of 37 (2019-02-20 to 2019-03-01) ~ 03:12:25 UTC
Fetching request 7 of 37 (2019-03-02 to 2019-03-11) ~ 03:12:30 UTC
Fetching request 8 of 37 (2019-03-12 to 2019-03-21) ~ 03:12:42 UTC
Fetching request 9 of 37 (2019-03-22 to 2019-03-31) ~ 03:12:47 UTC
Fetching request 10 of 37 (2019-04-01 to 2019-04-10) ~ 03:12:53 UTC
Fetching request 11 of 37 (2019-04-11 to 2019-04-20) ~ 03:13:01 UTC
Fetching request 12 of 37 (2019-04-21 to 2019-04-30) ~ 03:13:05 UTC
Fetching request 13 of 37 (2019-05-01 to 2019-05-10) ~ 03:13:08 UTC
Fetching request 14 of 37 (2019-05-11 to 2019-05-20) ~ 03:13:13 UTC
Fetching request 15 of 37 (2019-05-21 to 2019-05-30) ~ 03:13:15 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/f253c0c8b8b921097c7724677716ef6a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/f253c0c8b8b921097c7724677716ef6a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/f253c0c8b8b921097c7724677716ef6a.nc (return_on_error= FALSE )
RETRYing...
Fetching request 16 of 37 (2019-05-31 to 2019-06-09) ~ 03:13:20 UTC
Fetching request 17 of 37 (2019-06-10 to 2019-06-19) ~ 03:13:23 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2019_nc/475f3b6ce44e6ef12ee02954aa4f680a.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2020-01-01 to 2020-01-10) ~ 03:13:31 UTC
Fetching request 2 of 37 (2020-01-11 to 2020-01-20) ~ 03:13:35 UTC
Fetching request 3 of 37 (2020-01-21 to 2020-01-30) ~ 03:13:39 UTC
Fetching request 4 of 37 (2020-01-31 to 2020-02-09) ~ 03:13:42 UTC
Fetching request 5 of 37 (2020-02-10 to 2020-02-19) ~ 03:13:45 UTC
Fetching request 6 of 37 (2020-02-20 to 2020-02-29) ~ 03:13:49 UTC
Fetching request 7 of 37 (2020-03-01 to 2020-03-10) ~ 03:13:53 UTC
Fetching request 8 of 37 (2020-03-11 to 2020-03-20) ~ 03:14:05 UTC
Fetching request 9 of 37 (2020-03-21 to 2020-03-30) ~ 03:14:09 UTC
Fetching request 10 of 37 (2020-03-31 to 2020-04-09) ~ 03:14:16 UTC
Fetching request 11 of 37 (2020-04-10 to 2020-04-19) ~ 03:14:33 UTC
Fetching request 12 of 37 (2020-04-20 to 2020-04-29) ~ 03:14:37 UTC
Fetching request 13 of 37 (2020-04-30 to 2020-05-09) ~ 03:14:40 UTC
Fetching request 14 of 37 (2020-05-10 to 2020-05-19) ~ 03:14:43 UTC
Fetching request 15 of 37 (2020-05-20 to 2020-05-29) ~ 03:14:47 UTC
Fetching request 16 of 37 (2020-05-30 to 2020-06-08) ~ 03:14:54 UTC
Fetching request 17 of 37 (2020-06-09 to 2020-06-18) ~ 03:14:58 UTC
Fetching request 18 of 37 (2020-06-19 to 2020-06-28) ~ 03:15:00 UTC
Fetching request 19 of 37 (2020-06-29 to 2020-07-08) ~ 03:15:04 UTC
Fetching request 20 of 37 (2020-07-09 to 2020-07-18) ~ 03:15:09 UTC
Fetching request 21 of 37 (2020-07-19 to 2020-07-28) ~ 03:15:13 UTC
Fetching request 22 of 37 (2020-07-29 to 2020-08-07) ~ 03:15:15 UTC
Fetching request 23 of 37 (2020-08-08 to 2020-08-17) ~ 03:15:18 UTC
Fetching request 24 of 37 (2020-08-18 to 2020-08-27) ~ 03:15:22 UTC
Fetching request 25 of 37 (2020-08-28 to 2020-09-06) ~ 03:15:25 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2020_nc/d9699d3c88b421152e02f74e631d8737.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2021-01-01 to 2021-01-10) ~ 03:15:37 UTC
Fetching request 2 of 37 (2021-01-11 to 2021-01-20) ~ 03:15:41 UTC
Fetching request 3 of 37 (2021-01-21 to 2021-01-30) ~ 03:15:45 UTC
Fetching request 4 of 37 (2021-01-31 to 2021-02-09) ~ 03:15:48 UTC
Fetching request 5 of 37 (2021-02-10 to 2021-02-19) ~ 03:15:52 UTC
Fetching request 6 of 37 (2021-02-20 to 2021-03-01) ~ 03:15:58 UTC
Fetching request 7 of 37 (2021-03-02 to 2021-03-11) ~ 03:16:02 UTC
Fetching request 8 of 37 (2021-03-12 to 2021-03-21) ~ 03:16:06 UTC
Fetching request 9 of 37 (2021-03-22 to 2021-03-31) ~ 03:16:09 UTC
Fetching request 10 of 37 (2021-04-01 to 2021-04-10) ~ 03:16:12 UTC
Fetching request 11 of 37 (2021-04-11 to 2021-04-20) ~ 03:16:16 UTC
Fetching request 12 of 37 (2021-04-21 to 2021-04-30) ~ 03:16:35 UTC
Fetching request 13 of 37 (2021-05-01 to 2021-05-10) ~ 03:16:52 UTC
Fetching request 14 of 37 (2021-05-11 to 2021-05-20) ~ 03:16:56 UTC
Fetching request 15 of 37 (2021-05-21 to 2021-05-30) ~ 03:16:58 UTC
Fetching request 16 of 37 (2021-05-31 to 2021-06-09) ~ 03:17:02 UTC
Fetching request 17 of 37 (2021-06-10 to 2021-06-19) ~ 03:17:05 UTC
Fetching request 18 of 37 (2021-06-20 to 2021-06-29) ~ 03:17:09 UTC
Fetching request 19 of 37 (2021-06-30 to 2021-07-09) ~ 03:17:13 UTC
Fetching request 20 of 37 (2021-07-10 to 2021-07-19) ~ 03:17:17 UTC
Fetching request 21 of 37 (2021-07-20 to 2021-07-29) ~ 03:17:20 UTC
Fetching request 22 of 37 (2021-07-30 to 2021-08-08) ~ 03:17:24 UTC
Fetching request 23 of 37 (2021-08-09 to 2021-08-18) ~ 03:17:27 UTC
Fetching request 24 of 37 (2021-08-19 to 2021-08-28) ~ 03:17:30 UTC
Fetching request 25 of 37 (2021-08-29 to 2021-09-07) ~ 03:17:42 UTC
Fetching request 26 of 37 (2021-09-08 to 2021-09-17) ~ 03:17:48 UTC
Fetching request 27 of 37 (2021-09-18 to 2021-09-27) ~ 03:17:52 UTC
Fetching request 28 of 37 (2021-09-28 to 2021-10-07) ~ 03:17:58 UTC
Fetching request 29 of 37 (2021-10-08 to 2021-10-17) ~ 03:18:04 UTC
Fetching request 30 of 37 (2021-10-18 to 2021-10-27) ~ 03:18:12 UTC
Fetching request 31 of 37 (2021-10-28 to 2021-11-06) ~ 03:18:17 UTC
Fetching request 32 of 37 (2021-11-07 to 2021-11-16) ~ 03:18:21 UTC
Fetching request 33 of 37 (2021-11-17 to 2021-11-26) ~ 03:18:23 UTC
Fetching request 34 of 37 (2021-11-27 to 2021-12-06) ~ 03:18:26 UTC
Fetching request 35 of 37 (2021-12-07 to 2021-12-16) ~ 03:18:30 UTC
Fetching request 36 of 37 (2021-12-17 to 2021-12-26) ~ 03:18:33 UTC
Fetching request 37 of 37 (2021-12-27 to 2021-12-31) ~ 03:18:37 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2022-01-01 to 2022-01-10) ~ 03:18:46 UTC
Fetching request 2 of 37 (2022-01-11 to 2022-01-20) ~ 03:18:46 UTC
Fetching request 3 of 37 (2022-01-21 to 2022-01-30) ~ 03:18:46 UTC
Fetching request 4 of 37 (2022-01-31 to 2022-02-09) ~ 03:18:47 UTC
Fetching request 5 of 37 (2022-02-10 to 2022-02-19) ~ 03:18:47 UTC
Fetching request 6 of 37 (2022-02-20 to 2022-03-01) ~ 03:18:47 UTC
Fetching request 7 of 37 (2022-03-02 to 2022-03-11) ~ 03:18:47 UTC
Fetching request 8 of 37 (2022-03-12 to 2022-03-21) ~ 03:18:47 UTC
Fetching request 9 of 37 (2022-03-22 to 2022-03-31) ~ 03:18:48 UTC
Fetching request 10 of 37 (2022-04-01 to 2022-04-10) ~ 03:18:48 UTC
Fetching request 11 of 37 (2022-04-11 to 2022-04-20) ~ 03:18:48 UTC
Fetching request 12 of 37 (2022-04-21 to 2022-04-30) ~ 03:18:48 UTC
Fetching request 13 of 37 (2022-05-01 to 2022-05-10) ~ 03:18:48 UTC
Fetching request 14 of 37 (2022-05-11 to 2022-05-20) ~ 03:18:48 UTC
Fetching request 15 of 37 (2022-05-21 to 2022-05-30) ~ 03:18:49 UTC
Fetching request 16 of 37 (2022-05-31 to 2022-06-09) ~ 03:18:49 UTC
Fetching request 17 of 37 (2022-06-10 to 2022-06-19) ~ 03:18:49 UTC
Fetching request 18 of 37 (2022-06-20 to 2022-06-29) ~ 03:18:49 UTC
Fetching request 19 of 37 (2022-06-30 to 2022-07-09) ~ 03:18:49 UTC
Fetching request 20 of 37 (2022-07-10 to 2022-07-19) ~ 03:18:50 UTC
Fetching request 21 of 37 (2022-07-20 to 2022-07-29) ~ 03:18:50 UTC
Fetching request 22 of 37 (2022-07-30 to 2022-08-08) ~ 03:18:50 UTC
Fetching request 23 of 37 (2022-08-09 to 2022-08-18) ~ 03:18:50 UTC
Fetching request 24 of 37 (2022-08-19 to 2022-08-28) ~ 03:18:51 UTC
Fetching request 25 of 37 (2022-08-29 to 2022-09-07) ~ 03:18:51 UTC
Fetching request 26 of 37 (2022-09-08 to 2022-09-17) ~ 03:18:52 UTC
Fetching request 27 of 37 (2022-09-18 to 2022-09-27) ~ 03:18:52 UTC
Fetching request 28 of 37 (2022-09-28 to 2022-10-07) ~ 03:19:07 UTC
Fetching request 29 of 37 (2022-10-08 to 2022-10-17) ~ 03:19:21 UTC
Fetching request 30 of 37 (2022-10-18 to 2022-10-27) ~ 03:19:28 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2022_nc/0180ecc1b6632c2b401fc71f616380b6.nc (return_on_error= FALSE )
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2023-01-01 to 2023-01-10) ~ 03:19:36 UTC
Fetching request 2 of 37 (2023-01-11 to 2023-01-20) ~ 03:19:40 UTC
Fetching request 3 of 37 (2023-01-21 to 2023-01-30) ~ 03:19:43 UTC
Fetching request 4 of 37 (2023-01-31 to 2023-02-09) ~ 03:20:03 UTC
Fetching request 5 of 37 (2023-02-10 to 2023-02-19) ~ 03:20:06 UTC
Fetching request 6 of 37 (2023-02-20 to 2023-03-01) ~ 03:20:23 UTC
Fetching request 7 of 37 (2023-03-02 to 2023-03-11) ~ 03:20:35 UTC
Fetching request 8 of 37 (2023-03-12 to 2023-03-21) ~ 03:20:38 UTC
Fetching request 9 of 37 (2023-03-22 to 2023-03-31) ~ 03:20:41 UTC
Fetching request 10 of 37 (2023-04-01 to 2023-04-10) ~ 03:20:45 UTC
Fetching request 11 of 37 (2023-04-11 to 2023-04-20) ~ 03:20:49 UTC
Fetching request 12 of 37 (2023-04-21 to 2023-04-30) ~ 03:20:52 UTC
Fetching request 13 of 37 (2023-05-01 to 2023-05-10) ~ 03:20:55 UTC
Fetching request 14 of 37 (2023-05-11 to 2023-05-20) ~ 03:20:57 UTC
Fetching request 15 of 37 (2023-05-21 to 2023-05-30) ~ 03:21:02 UTC
Fetching request 16 of 37 (2023-05-31 to 2023-06-09) ~ 03:21:05 UTC
Fetching request 17 of 37 (2023-06-10 to 2023-06-19) ~ 03:21:10 UTC
Fetching request 18 of 37 (2023-06-20 to 2023-06-29) ~ 03:21:13 UTC
Fetching request 19 of 37 (2023-06-30 to 2023-07-09) ~ 03:21:18 UTC
Fetching request 20 of 37 (2023-07-10 to 2023-07-19) ~ 03:21:24 UTC
Fetching request 21 of 37 (2023-07-20 to 2023-07-29) ~ 03:21:28 UTC
Fetching request 22 of 37 (2023-07-30 to 2023-08-08) ~ 03:21:33 UTC
Fetching request 23 of 37 (2023-08-09 to 2023-08-18) ~ 03:21:38 UTC
Fetching request 24 of 37 (2023-08-19 to 2023-08-28) ~ 03:21:41 UTC
Fetching request 25 of 37 (2023-08-29 to 2023-09-07) ~ 03:21:45 UTC
Fetching request 26 of 37 (2023-09-08 to 2023-09-17) ~ 03:21:49 UTC
Fetching request 27 of 37 (2023-09-18 to 2023-09-27) ~ 03:22:04 UTC
Fetching request 28 of 37 (2023-09-28 to 2023-10-07) ~ 03:22:07 UTC
Fetching request 29 of 37 (2023-10-08 to 2023-10-17) ~ 03:22:15 UTC
Fetching request 30 of 37 (2023-10-18 to 2023-10-27) ~ 03:22:20 UTC
Fetching request 31 of 37 (2023-10-28 to 2023-11-06) ~ 03:22:24 UTC
Fetching request 32 of 37 (2023-11-07 to 2023-11-16) ~ 03:22:29 UTC
Fetching request 33 of 37 (2023-11-17 to 2023-11-26) ~ 03:22:33 UTC
Fetching request 34 of 37 (2023-11-27 to 2023-12-06) ~ 03:22:38 UTC
Fetching request 35 of 37 (2023-12-07 to 2023-12-16) ~ 03:22:55 UTC
Fetching request 36 of 37 (2023-12-17 to 2023-12-26) ~ 03:22:58 UTC
Fetching request 37 of 37 (2023-12-27 to 2023-12-31) ~ 03:23:04 UTC
Downloading 37 requests, up to 10 time slices each
Fetching request 1 of 37 (2024-01-01 to 2024-01-10) ~ 03:23:12 UTC
Fetching request 2 of 37 (2024-01-11 to 2024-01-20) ~ 03:23:12 UTC
Fetching request 3 of 37 (2024-01-21 to 2024-01-30) ~ 03:23:12 UTC
Fetching request 4 of 37 (2024-01-31 to 2024-02-09) ~ 03:23:13 UTC
Fetching request 5 of 37 (2024-02-10 to 2024-02-19) ~ 03:23:13 UTC
Fetching request 6 of 37 (2024-02-20 to 2024-02-29) ~ 03:23:13 UTC
Fetching request 7 of 37 (2024-03-01 to 2024-03-10) ~ 03:23:13 UTC
Fetching request 8 of 37 (2024-03-11 to 2024-03-20) ~ 03:23:13 UTC
Fetching request 9 of 37 (2024-03-21 to 2024-03-30) ~ 03:23:14 UTC
Fetching request 10 of 37 (2024-03-31 to 2024-04-09) ~ 03:23:14 UTC
Fetching request 11 of 37 (2024-04-10 to 2024-04-19) ~ 03:23:14 UTC
Fetching request 12 of 37 (2024-04-20 to 2024-04-29) ~ 03:23:14 UTC
Fetching request 13 of 37 (2024-04-30 to 2024-05-09) ~ 03:23:14 UTC
Fetching request 14 of 37 (2024-05-10 to 2024-05-19) ~ 03:23:15 UTC
Fetching request 15 of 37 (2024-05-20 to 2024-05-29) ~ 03:23:15 UTC
Fetching request 16 of 37 (2024-05-30 to 2024-06-08) ~ 03:23:15 UTC
Fetching request 17 of 37 (2024-06-09 to 2024-06-18) ~ 03:23:15 UTC
Fetching request 18 of 37 (2024-06-19 to 2024-06-28) ~ 03:23:15 UTC
Fetching request 19 of 37 (2024-06-29 to 2024-07-08) ~ 03:23:16 UTC
Fetching request 20 of 37 (2024-07-09 to 2024-07-18) ~ 03:23:16 UTC
Fetching request 21 of 37 (2024-07-19 to 2024-07-28) ~ 03:23:16 UTC
Fetching request 22 of 37 (2024-07-29 to 2024-08-07) ~ 03:23:16 UTC
Fetching request 23 of 37 (2024-08-08 to 2024-08-17) ~ 03:23:16 UTC
Fetching request 24 of 37 (2024-08-18 to 2024-08-27) ~ 03:23:16 UTC
Fetching request 25 of 37 (2024-08-28 to 2024-09-06) ~ 03:23:17 UTC
Fetching request 26 of 37 (2024-09-07 to 2024-09-16) ~ 03:23:17 UTC
Fetching request 27 of 37 (2024-09-17 to 2024-09-26) ~ 03:23:17 UTC
Fetching request 28 of 37 (2024-09-27 to 2024-10-07) ~ 03:23:17 UTC
Fetching request 29 of 37 (2024-10-08 to 2024-10-17) ~ 03:23:17 UTC
Fetching request 30 of 37 (2024-10-18 to 2024-10-27) ~ 03:23:18 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2024_nc/58cacba8b27326589859dddeba745a7e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2024_nc/58cacba8b27326589859dddeba745a7e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2024_nc/58cacba8b27326589859dddeba745a7e.nc (return_on_error= FALSE )
RETRYing...
Fetching request 31 of 37 (2024-10-28 to 2024-11-06) ~ 03:23:19 UTC
Fetching request 32 of 37 (2024-11-07 to 2024-11-16) ~ 03:23:22 UTC
Fetching request 33 of 37 (2024-11-17 to 2024-11-26) ~ 03:23:26 UTC
Fetching request 34 of 37 (2024-11-27 to 2024-12-06) ~ 03:23:32 UTC
Fetching request 35 of 37 (2024-12-07 to 2024-12-16) ~ 03:23:35 UTC
Fetching request 36 of 37 (2024-12-17 to 2024-12-26) ~ 03:23:38 UTC
Fetching request 37 of 37 (2024-12-27 to 2024-12-31) ~ 03:23:42 UTC
Downloading 17 requests, up to 10 time slices each
Fetching request 1 of 17 (2025-01-01 to 2025-01-10) ~ 03:23:51 UTC
Fetching request 2 of 17 (2025-01-11 to 2025-01-20) ~ 03:23:52 UTC
Fetching request 3 of 17 (2025-01-21 to 2025-01-30) ~ 03:23:52 UTC
Fetching request 4 of 17 (2025-01-31 to 2025-02-09) ~ 03:23:52 UTC
Fetching request 5 of 17 (2025-02-10 to 2025-02-19) ~ 03:23:52 UTC
Fetching request 6 of 17 (2025-02-20 to 2025-03-01) ~ 03:23:52 UTC
Fetching request 7 of 17 (2025-03-02 to 2025-03-11) ~ 03:23:53 UTC
Fetching request 8 of 17 (2025-03-12 to 2025-03-21) ~ 03:23:57 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/NMSAS/2025_nc/40bd86efe438aa47312baaf5ff2f44ea.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1985-01-01 to 1985-02-16) ~ 03:24:05 UTC
Fetching request 2 of 8 (1985-02-17 to 1985-04-04) ~ 03:24:18 UTC
Fetching request 3 of 8 (1985-04-05 to 1985-05-21) ~ 03:24:45 UTC
Fetching request 4 of 8 (1985-05-22 to 1985-07-07) ~ 03:24:58 UTC
Fetching request 5 of 8 (1985-07-08 to 1985-08-23) ~ 03:25:19 UTC
Fetching request 6 of 8 (1985-08-24 to 1985-10-09) ~ 03:25:48 UTC
Fetching request 7 of 8 (1985-10-10 to 1985-11-25) ~ 03:26:15 UTC
Fetching request 8 of 8 (1985-11-26 to 1985-12-31) ~ 03:26:26 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1986-01-01 to 1986-02-16) ~ 03:26:40 UTC
Fetching request 2 of 8 (1986-02-17 to 1986-04-04) ~ 03:26:41 UTC
Fetching request 3 of 8 (1986-04-05 to 1986-05-21) ~ 03:26:41 UTC
Fetching request 4 of 8 (1986-05-22 to 1986-07-07) ~ 03:26:41 UTC
Fetching request 5 of 8 (1986-07-08 to 1986-08-23) ~ 03:26:41 UTC
Fetching request 6 of 8 (1986-08-24 to 1986-10-09) ~ 03:26:47 UTC
Fetching request 7 of 8 (1986-10-10 to 1986-11-25) ~ 03:27:00 UTC
Fetching request 8 of 8 (1986-11-26 to 1986-12-31) ~ 03:27:12 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1987-01-01 to 1987-02-16) ~ 03:27:27 UTC
Fetching request 2 of 8 (1987-02-17 to 1987-04-04) ~ 03:27:27 UTC
Fetching request 3 of 8 (1987-04-05 to 1987-05-21) ~ 03:27:28 UTC
Fetching request 4 of 8 (1987-05-22 to 1987-07-07) ~ 03:27:28 UTC
Fetching request 5 of 8 (1987-07-08 to 1987-08-23) ~ 03:27:35 UTC
Fetching request 6 of 8 (1987-08-24 to 1987-10-09) ~ 03:27:49 UTC
Fetching request 7 of 8 (1987-10-10 to 1987-11-25) ~ 03:28:06 UTC
Fetching request 8 of 8 (1987-11-26 to 1987-12-31) ~ 03:28:18 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1988-01-01 to 1988-02-16) ~ 03:29:01 UTC
Fetching request 2 of 8 (1988-02-17 to 1988-04-03) ~ 03:29:01 UTC
Fetching request 3 of 8 (1988-04-04 to 1988-05-20) ~ 03:29:01 UTC
Fetching request 4 of 8 (1988-05-21 to 1988-07-06) ~ 03:29:05 UTC
Fetching request 5 of 8 (1988-07-07 to 1988-08-22) ~ 03:29:16 UTC
Fetching request 6 of 8 (1988-08-23 to 1988-10-08) ~ 03:29:28 UTC
Fetching request 7 of 8 (1988-10-09 to 1988-11-24) ~ 03:29:40 UTC
Fetching request 8 of 8 (1988-11-25 to 1988-12-31) ~ 03:29:56 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1989-01-01 to 1989-02-16) ~ 03:30:23 UTC
Fetching request 2 of 8 (1989-02-17 to 1989-04-04) ~ 03:30:23 UTC
Fetching request 3 of 8 (1989-04-05 to 1989-05-21) ~ 03:30:23 UTC
Fetching request 4 of 8 (1989-05-22 to 1989-07-07) ~ 03:30:23 UTC
Fetching request 5 of 8 (1989-07-08 to 1989-08-23) ~ 03:30:24 UTC
Fetching request 6 of 8 (1989-08-24 to 1989-10-09) ~ 03:30:24 UTC
Fetching request 7 of 8 (1989-10-10 to 1989-11-25) ~ 03:30:33 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1989_nc/1d14943bad47e912d3d36460c055a6d6.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1990-01-01 to 1990-02-16) ~ 03:30:40 UTC
Fetching request 2 of 8 (1990-02-17 to 1990-04-04) ~ 03:30:54 UTC
Fetching request 3 of 8 (1990-04-05 to 1990-05-21) ~ 03:31:14 UTC
Fetching request 4 of 8 (1990-05-22 to 1990-07-07) ~ 03:31:29 UTC
Fetching request 5 of 8 (1990-07-08 to 1990-08-23) ~ 03:31:41 UTC
Fetching request 6 of 8 (1990-08-24 to 1990-10-09) ~ 03:31:56 UTC
Fetching request 7 of 8 (1990-10-10 to 1990-11-25) ~ 03:32:08 UTC
Fetching request 8 of 8 (1990-11-26 to 1990-12-31) ~ 03:32:21 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1991-01-01 to 1991-02-16) ~ 03:32:35 UTC
Fetching request 2 of 8 (1991-02-17 to 1991-04-04) ~ 03:32:36 UTC
Fetching request 3 of 8 (1991-04-05 to 1991-05-21) ~ 03:32:36 UTC
Fetching request 4 of 8 (1991-05-22 to 1991-07-07) ~ 03:32:36 UTC
Fetching request 5 of 8 (1991-07-08 to 1991-08-23) ~ 03:32:36 UTC
Fetching request 6 of 8 (1991-08-24 to 1991-10-09) ~ 03:32:36 UTC
Fetching request 7 of 8 (1991-10-10 to 1991-11-25) ~ 03:32:39 UTC
Fetching request 8 of 8 (1991-11-26 to 1991-12-31) ~ 03:32:48 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1992-01-01 to 1992-02-16) ~ 03:33:03 UTC
Fetching request 2 of 8 (1992-02-17 to 1992-04-03) ~ 03:33:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1992_nc/0bbeacef43c94407dc463056b10c8ea8.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1993-01-01 to 1993-02-16) ~ 03:33:15 UTC
Fetching request 2 of 8 (1993-02-17 to 1993-04-04) ~ 03:33:24 UTC
Fetching request 3 of 8 (1993-04-05 to 1993-05-21) ~ 03:33:32 UTC
Fetching request 4 of 8 (1993-05-22 to 1993-07-07) ~ 03:33:57 UTC
Fetching request 5 of 8 (1993-07-08 to 1993-08-23) ~ 03:34:08 UTC
Fetching request 6 of 8 (1993-08-24 to 1993-10-09) ~ 03:34:21 UTC
Fetching request 7 of 8 (1993-10-10 to 1993-11-25) ~ 03:34:32 UTC
Fetching request 8 of 8 (1993-11-26 to 1993-12-31) ~ 03:34:48 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1994-01-01 to 1994-02-16) ~ 03:35:05 UTC
Fetching request 2 of 8 (1994-02-17 to 1994-04-04) ~ 03:35:08 UTC
Fetching request 3 of 8 (1994-04-05 to 1994-05-21) ~ 03:35:27 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1994_nc/38a605b098cbf32ca0c775112a6e9ee9.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1995-01-01 to 1995-02-16) ~ 03:35:35 UTC
Fetching request 2 of 8 (1995-02-17 to 1995-04-04) ~ 03:35:51 UTC
Fetching request 3 of 8 (1995-04-05 to 1995-05-21) ~ 03:36:21 UTC
Fetching request 4 of 8 (1995-05-22 to 1995-07-07) ~ 03:36:55 UTC
Fetching request 5 of 8 (1995-07-08 to 1995-08-23) ~ 03:37:20 UTC
Fetching request 6 of 8 (1995-08-24 to 1995-10-09) ~ 03:37:46 UTC
Fetching request 7 of 8 (1995-10-10 to 1995-11-25) ~ 03:37:59 UTC
Fetching request 8 of 8 (1995-11-26 to 1995-12-31) ~ 03:38:08 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1995_nc/030e30fa6e7d8ce29c64c6ce350f615f.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1996-01-01 to 1996-02-16) ~ 03:38:15 UTC
Fetching request 2 of 8 (1996-02-17 to 1996-04-03) ~ 03:38:28 UTC
Fetching request 3 of 8 (1996-04-04 to 1996-05-20) ~ 03:38:35 UTC
Fetching request 4 of 8 (1996-05-21 to 1996-07-06) ~ 03:38:45 UTC
Fetching request 5 of 8 (1996-07-07 to 1996-08-22) ~ 03:38:55 UTC
Fetching request 6 of 8 (1996-08-23 to 1996-10-08) ~ 03:39:04 UTC
Fetching request 7 of 8 (1996-10-09 to 1996-11-24) ~ 03:39:12 UTC
Fetching request 8 of 8 (1996-11-25 to 1996-12-31) ~ 03:39:22 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1997-01-01 to 1997-02-16) ~ 03:39:52 UTC
Fetching request 2 of 8 (1997-02-17 to 1997-04-04) ~ 03:39:52 UTC
Fetching request 3 of 8 (1997-04-05 to 1997-05-21) ~ 03:39:52 UTC
Fetching request 4 of 8 (1997-05-22 to 1997-07-07) ~ 03:39:52 UTC
Fetching request 5 of 8 (1997-07-08 to 1997-08-23) ~ 03:39:53 UTC
Fetching request 6 of 8 (1997-08-24 to 1997-10-09) ~ 03:39:53 UTC
Fetching request 7 of 8 (1997-10-10 to 1997-11-25) ~ 03:39:53 UTC
Fetching request 8 of 8 (1997-11-26 to 1997-12-31) ~ 03:40:05 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/1997_nc/60aac85a433263a5573a250ed593da5d.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1998-01-01 to 1998-02-16) ~ 03:40:12 UTC
Fetching request 2 of 8 (1998-02-17 to 1998-04-04) ~ 03:40:27 UTC
Fetching request 3 of 8 (1998-04-05 to 1998-05-21) ~ 03:40:36 UTC
Fetching request 4 of 8 (1998-05-22 to 1998-07-07) ~ 03:40:49 UTC
Fetching request 5 of 8 (1998-07-08 to 1998-08-23) ~ 03:41:13 UTC
Fetching request 6 of 8 (1998-08-24 to 1998-10-09) ~ 03:41:35 UTC
Fetching request 7 of 8 (1998-10-10 to 1998-11-25) ~ 03:41:44 UTC
Fetching request 8 of 8 (1998-11-26 to 1998-12-31) ~ 03:41:53 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (1999-01-01 to 1999-02-16) ~ 03:42:06 UTC
Fetching request 2 of 8 (1999-02-17 to 1999-04-04) ~ 03:42:06 UTC
Fetching request 3 of 8 (1999-04-05 to 1999-05-21) ~ 03:42:06 UTC
Fetching request 4 of 8 (1999-05-22 to 1999-07-07) ~ 03:42:06 UTC
Fetching request 5 of 8 (1999-07-08 to 1999-08-23) ~ 03:42:07 UTC
Fetching request 6 of 8 (1999-08-24 to 1999-10-09) ~ 03:42:07 UTC
Fetching request 7 of 8 (1999-10-10 to 1999-11-25) ~ 03:42:07 UTC
Fetching request 8 of 8 (1999-11-26 to 1999-12-31) ~ 03:42:09 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2000-01-01 to 2000-02-16) ~ 03:42:49 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2000_nc/98406f46626e3a3f7db89a9ab371ade3.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2001-01-01 to 2001-02-16) ~ 03:42:57 UTC
Fetching request 2 of 8 (2001-02-17 to 2001-04-04) ~ 03:43:23 UTC
Fetching request 3 of 8 (2001-04-05 to 2001-05-21) ~ 03:43:50 UTC
Fetching request 4 of 8 (2001-05-22 to 2001-07-07) ~ 03:43:59 UTC
Fetching request 5 of 8 (2001-07-08 to 2001-08-23) ~ 03:44:14 UTC
Fetching request 6 of 8 (2001-08-24 to 2001-10-09) ~ 03:44:50 UTC
Fetching request 7 of 8 (2001-10-10 to 2001-11-25) ~ 03:45:27 UTC
Fetching request 8 of 8 (2001-11-26 to 2001-12-31) ~ 03:45:39 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2002-01-01 to 2002-02-16) ~ 03:45:50 UTC
Fetching request 2 of 8 (2002-02-17 to 2002-04-04) ~ 03:46:14 UTC
Fetching request 3 of 8 (2002-04-05 to 2002-05-21) ~ 03:46:25 UTC
Fetching request 4 of 8 (2002-05-22 to 2002-07-07) ~ 03:46:37 UTC
Fetching request 5 of 8 (2002-07-08 to 2002-08-23) ~ 03:46:48 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2002_nc/d743ecfbc78ed0acb06c9a919e6d05bb.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2003-01-01 to 2003-02-16) ~ 03:47:06 UTC
Fetching request 2 of 8 (2003-02-17 to 2003-04-04) ~ 03:47:18 UTC
Fetching request 3 of 8 (2003-04-05 to 2003-05-21) ~ 03:47:43 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2003_nc/f1f78d34056b43dee8415639f70f59b5.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2004-01-01 to 2004-02-16) ~ 03:47:59 UTC
Fetching request 2 of 8 (2004-02-17 to 2004-04-03) ~ 03:48:15 UTC
Fetching request 3 of 8 (2004-04-04 to 2004-05-20) ~ 03:48:38 UTC
Fetching request 4 of 8 (2004-05-21 to 2004-07-06) ~ 03:48:53 UTC
Fetching request 5 of 8 (2004-07-07 to 2004-08-22) ~ 03:49:25 UTC
Fetching request 6 of 8 (2004-08-23 to 2004-10-08) ~ 03:49:40 UTC
Fetching request 7 of 8 (2004-10-09 to 2004-11-24) ~ 03:50:05 UTC
Fetching request 8 of 8 (2004-11-25 to 2004-12-31) ~ 03:50:27 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2005-01-01 to 2005-02-16) ~ 03:50:42 UTC
Fetching request 2 of 8 (2005-02-17 to 2005-04-04) ~ 03:50:42 UTC
Fetching request 3 of 8 (2005-04-05 to 2005-05-21) ~ 03:50:42 UTC
Fetching request 4 of 8 (2005-05-22 to 2005-07-07) ~ 03:50:42 UTC
Fetching request 5 of 8 (2005-07-08 to 2005-08-23) ~ 03:50:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2005_nc/b63cfc4589463c855d367803653bdbeb.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2006-01-01 to 2006-02-16) ~ 03:50:58 UTC
Fetching request 2 of 8 (2006-02-17 to 2006-04-04) ~ 03:51:10 UTC
Fetching request 3 of 8 (2006-04-05 to 2006-05-21) ~ 03:51:20 UTC
Fetching request 4 of 8 (2006-05-22 to 2006-07-07) ~ 03:51:29 UTC
Fetching request 5 of 8 (2006-07-08 to 2006-08-23) ~ 03:51:36 UTC
Fetching request 6 of 8 (2006-08-24 to 2006-10-09) ~ 03:51:47 UTC
Fetching request 7 of 8 (2006-10-10 to 2006-11-25) ~ 03:51:58 UTC
Fetching request 8 of 8 (2006-11-26 to 2006-12-31) ~ 03:52:30 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2007-01-01 to 2007-02-16) ~ 03:53:01 UTC
Fetching request 2 of 8 (2007-02-17 to 2007-04-04) ~ 03:53:01 UTC
Fetching request 3 of 8 (2007-04-05 to 2007-05-21) ~ 03:53:01 UTC
Fetching request 4 of 8 (2007-05-22 to 2007-07-07) ~ 03:53:03 UTC
Fetching request 5 of 8 (2007-07-08 to 2007-08-23) ~ 03:53:14 UTC
Fetching request 6 of 8 (2007-08-24 to 2007-10-09) ~ 03:53:24 UTC
Fetching request 7 of 8 (2007-10-10 to 2007-11-25) ~ 03:54:01 UTC
Fetching request 8 of 8 (2007-11-26 to 2007-12-31) ~ 03:54:15 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2008-01-01 to 2008-02-16) ~ 03:54:35 UTC
Fetching request 2 of 8 (2008-02-17 to 2008-04-03) ~ 03:54:35 UTC
Fetching request 3 of 8 (2008-04-04 to 2008-05-20) ~ 03:54:36 UTC
Fetching request 4 of 8 (2008-05-21 to 2008-07-06) ~ 03:54:36 UTC
Fetching request 5 of 8 (2008-07-07 to 2008-08-22) ~ 03:54:36 UTC
Fetching request 6 of 8 (2008-08-23 to 2008-10-08) ~ 03:55:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2008_nc/e1977655f3e045e3492d72ae6cc183b8.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2009-01-01 to 2009-02-16) ~ 03:55:20 UTC
Fetching request 2 of 8 (2009-02-17 to 2009-04-04) ~ 03:55:31 UTC
Fetching request 3 of 8 (2009-04-05 to 2009-05-21) ~ 03:56:13 UTC
Fetching request 4 of 8 (2009-05-22 to 2009-07-07) ~ 03:56:33 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2009_nc/2b9a3df34e12bb78aa3d7f98978274ba.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2010-01-01 to 2010-02-16) ~ 03:56:41 UTC
Fetching request 2 of 8 (2010-02-17 to 2010-04-04) ~ 03:57:09 UTC
Fetching request 3 of 8 (2010-04-05 to 2010-05-21) ~ 03:57:18 UTC
Fetching request 4 of 8 (2010-05-22 to 2010-07-07) ~ 03:57:29 UTC
Fetching request 5 of 8 (2010-07-08 to 2010-08-23) ~ 03:57:39 UTC
Fetching request 6 of 8 (2010-08-24 to 2010-10-09) ~ 03:57:51 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2010_nc/7cd657772771237446d9670c27049129.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2011-01-01 to 2011-02-16) ~ 03:58:00 UTC
Fetching request 2 of 8 (2011-02-17 to 2011-04-04) ~ 03:58:10 UTC
Fetching request 3 of 8 (2011-04-05 to 2011-05-21) ~ 03:58:19 UTC
Fetching request 4 of 8 (2011-05-22 to 2011-07-07) ~ 03:58:29 UTC
Fetching request 5 of 8 (2011-07-08 to 2011-08-23) ~ 03:58:51 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2011_nc/68d6c182715731312aa3fac8a9f4a8d2.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2012-01-01 to 2012-02-16) ~ 03:58:58 UTC
Fetching request 2 of 8 (2012-02-17 to 2012-04-03) ~ 03:59:09 UTC
Fetching request 3 of 8 (2012-04-04 to 2012-05-20) ~ 03:59:20 UTC
Fetching request 4 of 8 (2012-05-21 to 2012-07-06) ~ 03:59:31 UTC
Fetching request 5 of 8 (2012-07-07 to 2012-08-22) ~ 03:59:41 UTC
Fetching request 6 of 8 (2012-08-23 to 2012-10-08) ~ 03:59:49 UTC
Fetching request 7 of 8 (2012-10-09 to 2012-11-24) ~ 03:59:58 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2012_nc/de933b1513cce6f20ab7a699164e33e8.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2013-01-01 to 2013-02-16) ~ 04:00:06 UTC
Fetching request 2 of 8 (2013-02-17 to 2013-04-04) ~ 04:00:13 UTC
Fetching request 3 of 8 (2013-04-05 to 2013-05-21) ~ 04:00:20 UTC
Fetching request 4 of 8 (2013-05-22 to 2013-07-07) ~ 04:00:41 UTC
Fetching request 5 of 8 (2013-07-08 to 2013-08-23) ~ 04:00:51 UTC
Fetching request 6 of 8 (2013-08-24 to 2013-10-09) ~ 04:01:02 UTC
Fetching request 7 of 8 (2013-10-10 to 2013-11-25) ~ 04:01:12 UTC
Fetching request 8 of 8 (2013-11-26 to 2013-12-31) ~ 04:01:23 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2014-01-01 to 2014-02-16) ~ 04:01:35 UTC
Fetching request 2 of 8 (2014-02-17 to 2014-04-04) ~ 04:01:35 UTC
Fetching request 3 of 8 (2014-04-05 to 2014-05-21) ~ 04:01:35 UTC
Fetching request 4 of 8 (2014-05-22 to 2014-07-07) ~ 04:01:36 UTC
Fetching request 5 of 8 (2014-07-08 to 2014-08-23) ~ 04:01:36 UTC
Fetching request 6 of 8 (2014-08-24 to 2014-10-09) ~ 04:01:39 UTC
Fetching request 7 of 8 (2014-10-10 to 2014-11-25) ~ 04:01:49 UTC
Fetching request 8 of 8 (2014-11-26 to 2014-12-31) ~ 04:02:08 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2015-01-01 to 2015-02-16) ~ 04:02:22 UTC
Fetching request 2 of 8 (2015-02-17 to 2015-04-04) ~ 04:02:22 UTC
Fetching request 3 of 8 (2015-04-05 to 2015-05-21) ~ 04:02:22 UTC
Fetching request 4 of 8 (2015-05-22 to 2015-07-07) ~ 04:02:25 UTC
Fetching request 5 of 8 (2015-07-08 to 2015-08-23) ~ 04:02:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2015_nc/ae0ae79c7bc16d8057a1df2cb902feb5.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2016-01-01 to 2016-02-16) ~ 04:02:44 UTC
Fetching request 2 of 8 (2016-02-17 to 2016-04-03) ~ 04:02:52 UTC
Fetching request 3 of 8 (2016-04-04 to 2016-05-20) ~ 04:03:01 UTC
Fetching request 4 of 8 (2016-05-21 to 2016-07-06) ~ 04:03:36 UTC
Fetching request 5 of 8 (2016-07-07 to 2016-08-22) ~ 04:04:02 UTC
Fetching request 6 of 8 (2016-08-23 to 2016-10-08) ~ 04:04:33 UTC
Fetching request 7 of 8 (2016-10-09 to 2016-11-24) ~ 04:04:47 UTC
Fetching request 8 of 8 (2016-11-25 to 2016-12-31) ~ 04:04:59 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2017-01-01 to 2017-02-16) ~ 04:05:21 UTC
Fetching request 2 of 8 (2017-02-17 to 2017-04-04) ~ 04:05:22 UTC
Fetching request 3 of 8 (2017-04-05 to 2017-05-21) ~ 04:05:22 UTC
Fetching request 4 of 8 (2017-05-22 to 2017-07-07) ~ 04:05:22 UTC
Fetching request 5 of 8 (2017-07-08 to 2017-08-23) ~ 04:05:32 UTC
Fetching request 6 of 8 (2017-08-24 to 2017-10-09) ~ 04:06:00 UTC
Fetching request 7 of 8 (2017-10-10 to 2017-11-25) ~ 04:06:25 UTC
Fetching request 8 of 8 (2017-11-26 to 2017-12-31) ~ 04:06:40 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2018-01-01 to 2018-02-16) ~ 04:06:52 UTC
Fetching request 2 of 8 (2018-02-17 to 2018-04-04) ~ 04:06:53 UTC
Fetching request 3 of 8 (2018-04-05 to 2018-05-21) ~ 04:06:53 UTC
Fetching request 4 of 8 (2018-05-22 to 2018-07-07) ~ 04:06:53 UTC
Fetching request 5 of 8 (2018-07-08 to 2018-08-23) ~ 04:06:53 UTC
Fetching request 6 of 8 (2018-08-24 to 2018-10-09) ~ 04:07:04 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2018_nc/e1c34850c3a3af588c09d5ff37ed0cbb.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2019-01-01 to 2019-02-16) ~ 04:07:12 UTC
Fetching request 2 of 8 (2019-02-17 to 2019-04-04) ~ 04:07:22 UTC
Fetching request 3 of 8 (2019-04-05 to 2019-05-21) ~ 04:07:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2019_nc/fb185dc0f0925f78c72c91e4f3dba0fa.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2020-01-01 to 2020-02-16) ~ 04:08:00 UTC
Fetching request 2 of 8 (2020-02-17 to 2020-04-03) ~ 04:08:29 UTC
Fetching request 3 of 8 (2020-04-04 to 2020-05-20) ~ 04:09:01 UTC
Fetching request 4 of 8 (2020-05-21 to 2020-07-06) ~ 04:09:29 UTC
Fetching request 5 of 8 (2020-07-07 to 2020-08-22) ~ 04:09:50 UTC
Fetching request 6 of 8 (2020-08-23 to 2020-10-08) ~ 04:10:00 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2020_nc/0218d69c9fd7cf853e8617fdcec4695e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2020_nc/0218d69c9fd7cf853e8617fdcec4695e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2020_nc/0218d69c9fd7cf853e8617fdcec4695e.nc (return_on_error= FALSE )
RETRYing...
Fetching request 7 of 8 (2020-10-09 to 2020-11-24) ~ 04:10:16 UTC
Fetching request 8 of 8 (2020-11-25 to 2020-12-31) ~ 04:10:30 UTC
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2021-01-01 to 2021-02-16) ~ 04:10:44 UTC
Fetching request 2 of 8 (2021-02-17 to 2021-04-04) ~ 04:10:52 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2021_nc/811d0b39bc57f6bccb9edb7a1e1353ff.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2022-01-01 to 2022-02-16) ~ 04:11:00 UTC
Fetching request 2 of 8 (2022-02-17 to 2022-04-04) ~ 04:11:18 UTC
Fetching request 3 of 8 (2022-04-05 to 2022-05-21) ~ 04:11:33 UTC
Fetching request 4 of 8 (2022-05-22 to 2022-07-07) ~ 04:11:42 UTC
Fetching request 5 of 8 (2022-07-08 to 2022-08-23) ~ 04:11:55 UTC
Fetching request 6 of 8 (2022-08-24 to 2022-10-09) ~ 04:12:11 UTC
Fetching request 7 of 8 (2022-10-10 to 2022-11-25) ~ 04:13:01 UTC
Fetching request 8 of 8 (2022-11-26 to 2022-12-31) ~ 04:13:31 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2022_nc/f170ead2a017768fa0ba4c7bdc5507e2.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2023-01-01 to 2023-02-16) ~ 04:13:39 UTC
Fetching request 2 of 8 (2023-02-17 to 2023-04-04) ~ 04:13:58 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2023_nc/4fbddf8cc9ebff108a8bfe15554cd528.nc (return_on_error= FALSE )
Downloading 8 requests, up to 47 time slices each
Fetching request 1 of 8 (2024-01-01 to 2024-02-16) ~ 04:14:06 UTC
Fetching request 2 of 8 (2024-02-17 to 2024-04-03) ~ 04:14:18 UTC
Fetching request 3 of 8 (2024-04-04 to 2024-05-20) ~ 04:14:32 UTC
Fetching request 4 of 8 (2024-05-21 to 2024-07-06) ~ 04:14:42 UTC
Fetching request 5 of 8 (2024-07-07 to 2024-08-22) ~ 04:15:08 UTC
Fetching request 6 of 8 (2024-08-23 to 2024-10-09) ~ 04:15:19 UTC
Fetching request 7 of 8 (2024-10-10 to 2024-11-25) ~ 04:15:43 UTC
Fetching request 8 of 8 (2024-11-26 to 2024-12-31) ~ 04:16:10 UTC
Downloading 4 requests, up to 47 time slices each
Fetching request 1 of 4 (2025-01-01 to 2025-02-16) ~ 04:16:26 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/OCNMS/2025_nc/6a5a1442d58a6f78df8ae93abcb80559.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1985-01-01 to 1985-05-03) ~ 04:16:34 UTC
Fetching request 2 of 3 (1985-05-04 to 1985-09-03) ~ 04:17:15 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Fetching request 3 of 3 (1985-09-04 to 1985-12-31) ~ 04:18:29 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1985_nc/57e54a3a73e6f77d056e81c25911d58b.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1986-01-01 to 1986-05-03) ~ 04:18:38 UTC
Fetching request 2 of 3 (1986-05-04 to 1986-09-03) ~ 04:19:33 UTC
Error in UseMethod("xml_find_all") : 
  no applicable method for 'xml_find_all' applied to an object of class "xml_document"
ERROR in calling UseMethod:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"ERROR in calling xml_find_all:
no applicable method for 'xml_find_all' applied to an object of class "xml_document"
RETRYing...
Fetching request 3 of 3 (1986-09-04 to 1986-12-31) ~ 04:21:11 UTC
Error : 

RETRYing...
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1987-01-01 to 1987-05-03) ~ 04:23:28 UTC
Fetching request 2 of 3 (1987-05-04 to 1987-09-03) ~ 04:23:28 UTC
Error : 

RETRYing...
Fetching request 3 of 3 (1987-09-04 to 1987-12-31) ~ 04:24:43 UTC
Error : 

RETRYing...
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1988-01-01 to 1988-05-02) ~ 04:27:08 UTC
Fetching request 2 of 3 (1988-05-03 to 1988-09-02) ~ 04:27:27 UTC
Fetching request 3 of 3 (1988-09-03 to 1988-12-31) ~ 04:28:03 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1989-01-01 to 1989-05-03) ~ 04:29:01 UTC
Fetching request 2 of 3 (1989-05-04 to 1989-09-03) ~ 04:29:02 UTC
Fetching request 3 of 3 (1989-09-04 to 1989-12-31) ~ 04:29:02 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1990-01-01 to 1990-05-03) ~ 04:29:29 UTC
Fetching request 2 of 3 (1990-05-04 to 1990-09-03) ~ 04:30:13 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : 
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1991-01-01 to 1991-05-03) ~ 04:33:54 UTC
Fetching request 2 of 3 (1991-05-04 to 1991-09-03) ~ 04:33:55 UTC
Fetching request 3 of 3 (1991-09-04 to 1991-12-31) ~ 04:34:31 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1991_nc/5d94039ee8dcf1337947fe5ab326ab3d.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1992-01-01 to 1992-05-02) ~ 04:34:40 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1992_nc/ca86ef46b73d55064aa9b1c04bbd5fe0.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1993-01-01 to 1993-05-03) ~ 04:35:49 UTC
Fetching request 2 of 3 (1993-05-04 to 1993-09-03) ~ 04:36:32 UTC
Fetching request 3 of 3 (1993-09-04 to 1993-12-31) ~ 04:37:07 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1994-01-01 to 1994-05-03) ~ 04:37:50 UTC
Fetching request 2 of 3 (1994-05-04 to 1994-09-03) ~ 04:38:42 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1994_nc/a3b38d9b04462dbb6f4f4af54ac92c5b.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1995-01-01 to 1995-05-03) ~ 04:38:50 UTC
Fetching request 2 of 3 (1995-05-04 to 1995-09-03) ~ 04:39:25 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/1995_nc/efd1890a4b75f048375c76897ee379b2.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1996-01-01 to 1996-05-02) ~ 04:40:07 UTC
Fetching request 2 of 3 (1996-05-03 to 1996-09-02) ~ 04:40:41 UTC
Fetching request 3 of 3 (1996-09-03 to 1996-12-31) ~ 04:41:10 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1997-01-01 to 1997-05-03) ~ 04:41:57 UTC
Fetching request 2 of 3 (1997-05-04 to 1997-09-03) ~ 04:42:22 UTC
Fetching request 3 of 3 (1997-09-04 to 1997-12-31) ~ 04:42:58 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1998-01-01 to 1998-05-03) ~ 04:43:34 UTC
Fetching request 2 of 3 (1998-05-04 to 1998-09-03) ~ 04:43:54 UTC
Fetching request 3 of 3 (1998-09-04 to 1998-12-31) ~ 04:44:16 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (1999-01-01 to 1999-05-03) ~ 04:44:40 UTC
Fetching request 2 of 3 (1999-05-04 to 1999-09-03) ~ 04:44:41 UTC
Fetching request 3 of 3 (1999-09-04 to 1999-12-31) ~ 04:44:59 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2000-01-01 to 2000-05-02) ~ 04:45:42 UTC
Fetching request 2 of 3 (2000-05-03 to 2000-09-02) ~ 04:45:42 UTC
Fetching request 3 of 3 (2000-09-03 to 2000-12-31) ~ 04:46:07 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2000_nc/17898289ff6d91e9f559b4482c1d51f7.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2001-01-01 to 2001-05-03) ~ 04:46:15 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2001_nc/46c43bb09cf1d36870e9459e41a6a44a.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2002-01-01 to 2002-05-03) ~ 04:46:54 UTC
Error : 

RETRYing...
Fetching request 2 of 3 (2002-05-04 to 2002-09-03) ~ 04:48:27 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2002_nc/7fb1466430aa8967bce680563ac7e678.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2003-01-01 to 2003-05-03) ~ 04:49:07 UTC
Fetching request 2 of 3 (2003-05-04 to 2003-09-03) ~ 04:49:44 UTC
Fetching request 3 of 3 (2003-09-04 to 2003-12-31) ~ 04:50:16 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2004-01-01 to 2004-05-02) ~ 04:50:47 UTC
Fetching request 2 of 3 (2004-05-03 to 2004-09-02) ~ 04:51:08 UTC
Fetching request 3 of 3 (2004-09-03 to 2004-12-31) ~ 04:51:43 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2005-01-01 to 2005-05-03) ~ 04:52:18 UTC
Fetching request 2 of 3 (2005-05-04 to 2005-09-03) ~ 04:52:18 UTC
Fetching request 3 of 3 (2005-09-04 to 2005-12-31) ~ 04:52:19 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2006-01-01 to 2006-05-03) ~ 04:52:39 UTC
Fetching request 2 of 3 (2006-05-04 to 2006-09-03) ~ 04:53:04 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2006_nc/f1e2432cc0595afcc194e7e0ace44057.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2007-01-01 to 2007-05-03) ~ 04:53:12 UTC
Fetching request 2 of 3 (2007-05-04 to 2007-09-03) ~ 04:53:48 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2007_nc/9aea97d1ee1c1c23aca38ebdd3051133.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2008-01-01 to 2008-05-02) ~ 04:54:33 UTC
Fetching request 2 of 3 (2008-05-03 to 2008-09-02) ~ 04:55:14 UTC
Fetching request 3 of 3 (2008-09-03 to 2008-12-31) ~ 04:55:45 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2009-01-01 to 2009-05-03) ~ 04:56:24 UTC
Fetching request 2 of 3 (2009-05-04 to 2009-09-03) ~ 04:56:48 UTC
Fetching request 3 of 3 (2009-09-04 to 2009-12-31) ~ 04:57:23 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2010-01-01 to 2010-05-03) ~ 04:58:04 UTC
Fetching request 2 of 3 (2010-05-04 to 2010-09-03) ~ 04:58:04 UTC
Fetching request 3 of 3 (2010-09-04 to 2010-12-31) ~ 04:58:04 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2011-01-01 to 2011-05-03) ~ 04:58:34 UTC
Fetching request 2 of 3 (2011-05-04 to 2011-09-03) ~ 04:59:13 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2011_nc/efd47a29f4086e19cd930e35772c43df.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2012-01-01 to 2012-05-02) ~ 04:59:21 UTC
Fetching request 2 of 3 (2012-05-03 to 2012-09-02) ~ 04:59:57 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2012_nc/4f684125875b10aaa40870b496fbf21f.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2013-01-01 to 2013-05-03) ~ 05:00:41 UTC
Fetching request 2 of 3 (2013-05-04 to 2013-09-03) ~ 05:01:22 UTC
Fetching request 3 of 3 (2013-09-04 to 2013-12-31) ~ 05:01:58 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2014-01-01 to 2014-05-03) ~ 05:02:41 UTC
Fetching request 2 of 3 (2014-05-04 to 2014-09-03) ~ 05:03:14 UTC
Fetching request 3 of 3 (2014-09-04 to 2014-12-31) ~ 05:03:56 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2015-01-01 to 2015-05-03) ~ 05:04:50 UTC
Fetching request 2 of 3 (2015-05-04 to 2015-09-03) ~ 05:04:51 UTC
Fetching request 3 of 3 (2015-09-04 to 2015-12-31) ~ 05:05:12 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2016-01-01 to 2016-05-02) ~ 05:05:54 UTC
Fetching request 2 of 3 (2016-05-03 to 2016-09-02) ~ 05:05:55 UTC
Fetching request 3 of 3 (2016-09-03 to 2016-12-31) ~ 05:06:24 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/SBNMS/2016_nc/23ab149a37008f7ffecef1d97a0a24ac.nc (return_on_error= FALSE )
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2017-01-01 to 2017-05-03) ~ 05:06:32 UTC
Fetching request 2 of 3 (2017-05-04 to 2017-09-03) ~ 05:06:58 UTC
Fetching request 3 of 3 (2017-09-04 to 2017-12-31) ~ 05:07:32 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2018-01-01 to 2018-05-03) ~ 05:08:03 UTC
Fetching request 2 of 3 (2018-05-04 to 2018-09-03) ~ 05:08:21 UTC
Fetching request 3 of 3 (2018-09-04 to 2018-12-31) ~ 05:09:02 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2019-01-01 to 2019-05-03) ~ 05:09:48 UTC
Fetching request 2 of 3 (2019-05-04 to 2019-09-03) ~ 05:09:48 UTC
Fetching request 3 of 3 (2019-09-04 to 2019-12-31) ~ 05:09:48 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2020-01-01 to 2020-05-02) ~ 05:10:14 UTC
Fetching request 2 of 3 (2020-05-03 to 2020-09-02) ~ 05:10:49 UTC
Fetching request 3 of 3 (2020-09-03 to 2020-12-31) ~ 05:11:21 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2021-01-01 to 2021-05-03) ~ 05:12:01 UTC
Fetching request 2 of 3 (2021-05-04 to 2021-09-03) ~ 05:12:02 UTC
Fetching request 3 of 3 (2021-09-04 to 2021-12-31) ~ 05:12:02 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2022-01-01 to 2022-05-03) ~ 05:12:35 UTC
Fetching request 2 of 3 (2022-05-04 to 2022-09-03) ~ 05:13:04 UTC
Fetching request 3 of 3 (2022-09-04 to 2022-12-31) ~ 05:13:35 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2023-01-01 to 2023-05-03) ~ 05:14:28 UTC
Fetching request 2 of 3 (2023-05-04 to 2023-09-03) ~ 05:14:55 UTC
Fetching request 3 of 3 (2023-09-04 to 2023-12-31) ~ 05:15:55 UTC
Downloading 3 requests, up to 123 time slices each
Fetching request 1 of 3 (2024-01-01 to 2024-05-02) ~ 05:16:57 UTC
Fetching request 2 of 3 (2024-05-03 to 2024-09-02) ~ 05:16:58 UTC
Error : 

RETRYing...
Error : Proxy Error

RETRYing...
Error : Proxy Error
Downloading 2 requests, up to 123 time slices each
Fetching request 1 of 2 (2025-01-01 to 2025-05-03) ~ 05:20:08 UTC
Error : 

RETRYing...
Fetching request 2 of 2 (2025-05-04 to 2025-06-11) ~ 05:21:59 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1985-01-01 to 1985-02-09) ~ 05:22:22 UTC
Fetching request 2 of 10 (1985-02-10 to 1985-03-21) ~ 05:22:22 UTC
Fetching request 3 of 10 (1985-03-22 to 1985-04-30) ~ 05:22:23 UTC
Fetching request 4 of 10 (1985-05-01 to 1985-06-09) ~ 05:22:33 UTC
Fetching request 5 of 10 (1985-06-10 to 1985-07-19) ~ 05:23:03 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1985_nc/ba662904ec39de1d9a6fa9566c9903a4.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1986-01-01 to 1986-02-09) ~ 05:23:11 UTC
Fetching request 2 of 10 (1986-02-10 to 1986-03-21) ~ 05:23:29 UTC
Fetching request 3 of 10 (1986-03-22 to 1986-04-30) ~ 05:23:46 UTC
Fetching request 4 of 10 (1986-05-01 to 1986-06-09) ~ 05:24:04 UTC
Fetching request 5 of 10 (1986-06-10 to 1986-07-19) ~ 05:24:18 UTC
Fetching request 6 of 10 (1986-07-20 to 1986-08-28) ~ 05:24:37 UTC
Fetching request 7 of 10 (1986-08-29 to 1986-10-07) ~ 05:24:54 UTC
Fetching request 8 of 10 (1986-10-08 to 1986-11-16) ~ 05:25:13 UTC
Fetching request 9 of 10 (1986-11-17 to 1986-12-26) ~ 05:25:31 UTC
Fetching request 10 of 10 (1986-12-27 to 1986-12-31) ~ 05:25:45 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1987-01-01 to 1987-02-09) ~ 05:25:55 UTC
Fetching request 2 of 10 (1987-02-10 to 1987-03-21) ~ 05:25:55 UTC
Fetching request 3 of 10 (1987-03-22 to 1987-04-30) ~ 05:25:55 UTC
Fetching request 4 of 10 (1987-05-01 to 1987-06-09) ~ 05:26:10 UTC
Fetching request 5 of 10 (1987-06-10 to 1987-07-19) ~ 05:26:23 UTC
Fetching request 6 of 10 (1987-07-20 to 1987-08-28) ~ 05:26:44 UTC
Fetching request 7 of 10 (1987-08-29 to 1987-10-07) ~ 05:26:56 UTC
Fetching request 8 of 10 (1987-10-08 to 1987-11-16) ~ 05:27:13 UTC
Fetching request 9 of 10 (1987-11-17 to 1987-12-26) ~ 05:27:32 UTC
Fetching request 10 of 10 (1987-12-27 to 1987-12-31) ~ 05:27:46 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1988-01-01 to 1988-02-09) ~ 05:27:58 UTC
Fetching request 2 of 10 (1988-02-10 to 1988-03-20) ~ 05:27:59 UTC
Fetching request 3 of 10 (1988-03-21 to 1988-04-29) ~ 05:27:59 UTC
Fetching request 4 of 10 (1988-04-30 to 1988-06-08) ~ 05:27:59 UTC
Fetching request 5 of 10 (1988-06-09 to 1988-07-18) ~ 05:27:59 UTC
Fetching request 6 of 10 (1988-07-19 to 1988-08-27) ~ 05:28:00 UTC
Fetching request 7 of 10 (1988-08-28 to 1988-10-06) ~ 05:28:00 UTC
Fetching request 8 of 10 (1988-10-07 to 1988-11-15) ~ 05:28:14 UTC
Fetching request 9 of 10 (1988-11-16 to 1988-12-25) ~ 05:28:26 UTC
Fetching request 10 of 10 (1988-12-26 to 1988-12-31) ~ 05:28:40 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1989-01-01 to 1989-02-09) ~ 05:28:50 UTC
Fetching request 2 of 10 (1989-02-10 to 1989-03-21) ~ 05:28:50 UTC
Fetching request 3 of 10 (1989-03-22 to 1989-04-30) ~ 05:28:51 UTC
Fetching request 4 of 10 (1989-05-01 to 1989-06-09) ~ 05:28:57 UTC
Fetching request 5 of 10 (1989-06-10 to 1989-07-19) ~ 05:29:11 UTC
Fetching request 6 of 10 (1989-07-20 to 1989-08-28) ~ 05:29:22 UTC
Fetching request 7 of 10 (1989-08-29 to 1989-10-07) ~ 05:29:35 UTC
Fetching request 8 of 10 (1989-10-08 to 1989-11-16) ~ 05:29:48 UTC
Fetching request 9 of 10 (1989-11-17 to 1989-12-26) ~ 05:30:06 UTC
Fetching request 10 of 10 (1989-12-27 to 1989-12-31) ~ 05:30:21 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1990-01-01 to 1990-02-09) ~ 05:30:31 UTC
Fetching request 2 of 10 (1990-02-10 to 1990-03-21) ~ 05:30:31 UTC
Fetching request 3 of 10 (1990-03-22 to 1990-04-30) ~ 05:30:31 UTC
Fetching request 4 of 10 (1990-05-01 to 1990-06-09) ~ 05:30:32 UTC
Fetching request 5 of 10 (1990-06-10 to 1990-07-19) ~ 05:30:32 UTC
Fetching request 6 of 10 (1990-07-20 to 1990-08-28) ~ 05:30:32 UTC
Fetching request 7 of 10 (1990-08-29 to 1990-10-07) ~ 05:30:37 UTC
Fetching request 8 of 10 (1990-10-08 to 1990-11-16) ~ 05:30:52 UTC
Fetching request 9 of 10 (1990-11-17 to 1990-12-26) ~ 05:31:11 UTC
Fetching request 10 of 10 (1990-12-27 to 1990-12-31) ~ 05:31:25 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1991-01-01 to 1991-02-09) ~ 05:31:37 UTC
Fetching request 2 of 10 (1991-02-10 to 1991-03-21) ~ 05:31:38 UTC
Fetching request 3 of 10 (1991-03-22 to 1991-04-30) ~ 05:31:38 UTC
Fetching request 4 of 10 (1991-05-01 to 1991-06-09) ~ 05:31:38 UTC
Fetching request 5 of 10 (1991-06-10 to 1991-07-19) ~ 05:31:44 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1991_nc/ccf0a0331559004c93f4e0921d55b62e.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1992-01-01 to 1992-02-09) ~ 05:31:51 UTC
Fetching request 2 of 10 (1992-02-10 to 1992-03-20) ~ 05:32:04 UTC
Fetching request 3 of 10 (1992-03-21 to 1992-04-29) ~ 05:32:18 UTC
Fetching request 4 of 10 (1992-04-30 to 1992-06-08) ~ 05:32:32 UTC
Fetching request 5 of 10 (1992-06-09 to 1992-07-18) ~ 05:32:44 UTC
Fetching request 6 of 10 (1992-07-19 to 1992-08-27) ~ 05:32:59 UTC
Error in R_nc4_open: No such file or directory
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1992_nc/52b197a54d92b6f55f518a4ab863a67e.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1993-01-01 to 1993-02-09) ~ 05:33:19 UTC
Fetching request 2 of 10 (1993-02-10 to 1993-03-21) ~ 05:33:35 UTC
Fetching request 3 of 10 (1993-03-22 to 1993-04-30) ~ 05:33:47 UTC
Fetching request 4 of 10 (1993-05-01 to 1993-06-09) ~ 05:33:58 UTC
Fetching request 5 of 10 (1993-06-10 to 1993-07-19) ~ 05:34:08 UTC
Fetching request 6 of 10 (1993-07-20 to 1993-08-28) ~ 05:34:20 UTC
Fetching request 7 of 10 (1993-08-29 to 1993-10-07) ~ 05:34:27 UTC
Fetching request 8 of 10 (1993-10-08 to 1993-11-16) ~ 05:34:40 UTC
Fetching request 9 of 10 (1993-11-17 to 1993-12-26) ~ 05:34:53 UTC
Fetching request 10 of 10 (1993-12-27 to 1993-12-31) ~ 05:35:03 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1994-01-01 to 1994-02-09) ~ 05:35:14 UTC
Fetching request 2 of 10 (1994-02-10 to 1994-03-21) ~ 05:35:14 UTC
Fetching request 3 of 10 (1994-03-22 to 1994-04-30) ~ 05:35:15 UTC
Fetching request 4 of 10 (1994-05-01 to 1994-06-09) ~ 05:35:15 UTC
Fetching request 5 of 10 (1994-06-10 to 1994-07-19) ~ 05:35:17 UTC
Fetching request 6 of 10 (1994-07-20 to 1994-08-28) ~ 05:35:31 UTC
Fetching request 7 of 10 (1994-08-29 to 1994-10-07) ~ 05:35:44 UTC
Fetching request 8 of 10 (1994-10-08 to 1994-11-16) ~ 05:35:55 UTC
Fetching request 9 of 10 (1994-11-17 to 1994-12-26) ~ 05:36:11 UTC
Fetching request 10 of 10 (1994-12-27 to 1994-12-31) ~ 05:36:27 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1995-01-01 to 1995-02-09) ~ 05:36:38 UTC
Fetching request 2 of 10 (1995-02-10 to 1995-03-21) ~ 05:36:39 UTC
Fetching request 3 of 10 (1995-03-22 to 1995-04-30) ~ 05:36:39 UTC
Fetching request 4 of 10 (1995-05-01 to 1995-06-09) ~ 05:36:40 UTC
Fetching request 5 of 10 (1995-06-10 to 1995-07-19) ~ 05:36:40 UTC
Fetching request 6 of 10 (1995-07-20 to 1995-08-28) ~ 05:36:40 UTC
Fetching request 7 of 10 (1995-08-29 to 1995-10-07) ~ 05:36:51 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1995_nc/fa408fc4464ec08eefda931b782e28f1.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1996-01-01 to 1996-02-09) ~ 05:36:59 UTC
Fetching request 2 of 10 (1996-02-10 to 1996-03-20) ~ 05:37:09 UTC
Fetching request 3 of 10 (1996-03-21 to 1996-04-29) ~ 05:37:18 UTC
Fetching request 4 of 10 (1996-04-30 to 1996-06-08) ~ 05:37:31 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1996_nc/5bbc729fc76f61633ef11134915f89e5.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1996_nc/5bbc729fc76f61633ef11134915f89e5.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1996_nc/5bbc729fc76f61633ef11134915f89e5.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 10 (1996-06-09 to 1996-07-18) ~ 05:37:42 UTC
Fetching request 6 of 10 (1996-07-19 to 1996-08-27) ~ 05:37:50 UTC
Fetching request 7 of 10 (1996-08-28 to 1996-10-06) ~ 05:38:01 UTC
Fetching request 8 of 10 (1996-10-07 to 1996-11-15) ~ 05:38:16 UTC
Fetching request 9 of 10 (1996-11-16 to 1996-12-25) ~ 05:38:25 UTC
Fetching request 10 of 10 (1996-12-26 to 1996-12-31) ~ 05:38:40 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1997-01-01 to 1997-02-09) ~ 05:38:52 UTC
Fetching request 2 of 10 (1997-02-10 to 1997-03-21) ~ 05:38:53 UTC
Fetching request 3 of 10 (1997-03-22 to 1997-04-30) ~ 05:38:53 UTC
Fetching request 4 of 10 (1997-05-01 to 1997-06-09) ~ 05:38:53 UTC
Fetching request 5 of 10 (1997-06-10 to 1997-07-19) ~ 05:38:58 UTC
Fetching request 6 of 10 (1997-07-20 to 1997-08-28) ~ 05:39:09 UTC
Fetching request 7 of 10 (1997-08-29 to 1997-10-07) ~ 05:39:21 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1997_nc/abca131a59ed635d76dc6d966e1f1b85.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1998-01-01 to 1998-02-09) ~ 05:39:28 UTC
Fetching request 2 of 10 (1998-02-10 to 1998-03-21) ~ 05:39:40 UTC
Fetching request 3 of 10 (1998-03-22 to 1998-04-30) ~ 05:39:55 UTC
Fetching request 4 of 10 (1998-05-01 to 1998-06-09) ~ 05:40:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1998_nc/d406d67cd8591e04789c5c979d62e46f.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1998_nc/d406d67cd8591e04789c5c979d62e46f.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1998_nc/d406d67cd8591e04789c5c979d62e46f.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 10 (1998-06-10 to 1998-07-19) ~ 05:40:23 UTC
Fetching request 6 of 10 (1998-07-20 to 1998-08-28) ~ 05:40:38 UTC
Fetching request 7 of 10 (1998-08-29 to 1998-10-07) ~ 05:40:50 UTC
Fetching request 8 of 10 (1998-10-08 to 1998-11-16) ~ 05:41:09 UTC
Fetching request 9 of 10 (1998-11-17 to 1998-12-26) ~ 05:41:21 UTC
Fetching request 10 of 10 (1998-12-27 to 1998-12-31) ~ 05:41:35 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (1999-01-01 to 1999-02-09) ~ 05:41:50 UTC
Fetching request 2 of 10 (1999-02-10 to 1999-03-21) ~ 05:41:51 UTC
Fetching request 3 of 10 (1999-03-22 to 1999-04-30) ~ 05:41:51 UTC
Fetching request 4 of 10 (1999-05-01 to 1999-06-09) ~ 05:41:51 UTC
Fetching request 5 of 10 (1999-06-10 to 1999-07-19) ~ 05:41:51 UTC
Fetching request 6 of 10 (1999-07-20 to 1999-08-28) ~ 05:41:51 UTC
Fetching request 7 of 10 (1999-08-29 to 1999-10-07) ~ 05:41:54 UTC
Fetching request 8 of 10 (1999-10-08 to 1999-11-16) ~ 05:42:05 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/1999_nc/9f1760c086a9e3aa03ab3a5ab2e9535e.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2000-01-01 to 2000-02-09) ~ 05:42:13 UTC
Fetching request 2 of 10 (2000-02-10 to 2000-03-20) ~ 05:42:32 UTC
Fetching request 3 of 10 (2000-03-21 to 2000-04-29) ~ 05:42:43 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2000_nc/7c4b96b2ec067d463d04627bdbea606c.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2000_nc/7c4b96b2ec067d463d04627bdbea606c.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2000_nc/7c4b96b2ec067d463d04627bdbea606c.nc (return_on_error= FALSE )
RETRYing...
Fetching request 4 of 10 (2000-04-30 to 2000-06-08) ~ 05:42:58 UTC
Fetching request 5 of 10 (2000-06-09 to 2000-07-18) ~ 05:43:05 UTC
Fetching request 6 of 10 (2000-07-19 to 2000-08-27) ~ 05:43:16 UTC
Fetching request 7 of 10 (2000-08-28 to 2000-10-06) ~ 05:43:32 UTC
Fetching request 8 of 10 (2000-10-07 to 2000-11-15) ~ 05:43:50 UTC
Fetching request 9 of 10 (2000-11-16 to 2000-12-25) ~ 05:44:05 UTC
Fetching request 10 of 10 (2000-12-26 to 2000-12-31) ~ 05:44:25 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2001-01-01 to 2001-02-09) ~ 05:44:38 UTC
Fetching request 2 of 10 (2001-02-10 to 2001-03-21) ~ 05:44:38 UTC
Fetching request 3 of 10 (2001-03-22 to 2001-04-30) ~ 05:44:38 UTC
Fetching request 4 of 10 (2001-05-01 to 2001-06-09) ~ 05:44:39 UTC
Fetching request 5 of 10 (2001-06-10 to 2001-07-19) ~ 05:44:39 UTC
Fetching request 6 of 10 (2001-07-20 to 2001-08-28) ~ 05:44:39 UTC
Fetching request 7 of 10 (2001-08-29 to 2001-10-07) ~ 05:44:52 UTC
Fetching request 8 of 10 (2001-10-08 to 2001-11-16) ~ 05:45:05 UTC
Fetching request 9 of 10 (2001-11-17 to 2001-12-26) ~ 05:45:23 UTC
Fetching request 10 of 10 (2001-12-27 to 2001-12-31) ~ 05:45:42 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2002-01-01 to 2002-02-09) ~ 05:45:52 UTC
Fetching request 2 of 10 (2002-02-10 to 2002-03-21) ~ 05:45:53 UTC
Fetching request 3 of 10 (2002-03-22 to 2002-04-30) ~ 05:45:53 UTC
Fetching request 4 of 10 (2002-05-01 to 2002-06-09) ~ 05:45:53 UTC
Fetching request 5 of 10 (2002-06-10 to 2002-07-19) ~ 05:46:04 UTC
Fetching request 6 of 10 (2002-07-20 to 2002-08-28) ~ 05:46:27 UTC
Fetching request 7 of 10 (2002-08-29 to 2002-10-07) ~ 05:46:49 UTC
Fetching request 8 of 10 (2002-10-08 to 2002-11-16) ~ 05:47:09 UTC
Fetching request 9 of 10 (2002-11-17 to 2002-12-26) ~ 05:47:23 UTC
Fetching request 10 of 10 (2002-12-27 to 2002-12-31) ~ 05:47:35 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2003-01-01 to 2003-02-09) ~ 05:47:46 UTC
Fetching request 2 of 10 (2003-02-10 to 2003-03-21) ~ 05:47:47 UTC
Fetching request 3 of 10 (2003-03-22 to 2003-04-30) ~ 05:47:47 UTC
Fetching request 4 of 10 (2003-05-01 to 2003-06-09) ~ 05:47:47 UTC
Fetching request 5 of 10 (2003-06-10 to 2003-07-19) ~ 05:47:47 UTC
Fetching request 6 of 10 (2003-07-20 to 2003-08-28) ~ 05:47:47 UTC
Fetching request 7 of 10 (2003-08-29 to 2003-10-07) ~ 05:48:01 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2003_nc/90c95e537ea900d5a97eea27ec3c6860.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2004-01-01 to 2004-02-09) ~ 05:48:09 UTC
Fetching request 2 of 10 (2004-02-10 to 2004-03-20) ~ 05:48:23 UTC
Fetching request 3 of 10 (2004-03-21 to 2004-04-29) ~ 05:48:38 UTC
Fetching request 4 of 10 (2004-04-30 to 2004-06-08) ~ 05:48:49 UTC
Fetching request 5 of 10 (2004-06-09 to 2004-07-18) ~ 05:49:00 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2004_nc/743d5411bd65b96bb271df6636f2af18.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2005-01-01 to 2005-02-09) ~ 05:49:08 UTC
Fetching request 2 of 10 (2005-02-10 to 2005-03-21) ~ 05:49:20 UTC
Fetching request 3 of 10 (2005-03-22 to 2005-04-30) ~ 05:49:35 UTC
Fetching request 4 of 10 (2005-05-01 to 2005-06-09) ~ 05:49:47 UTC
Fetching request 5 of 10 (2005-06-10 to 2005-07-19) ~ 05:50:01 UTC
Fetching request 6 of 10 (2005-07-20 to 2005-08-28) ~ 05:50:12 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2005_nc/561d4064c4366802cb769f5f9e6f50e2.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2005_nc/561d4064c4366802cb769f5f9e6f50e2.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2005_nc/561d4064c4366802cb769f5f9e6f50e2.nc (return_on_error= FALSE )
RETRYing...
Fetching request 7 of 10 (2005-08-29 to 2005-10-07) ~ 05:50:23 UTC
Fetching request 8 of 10 (2005-10-08 to 2005-11-16) ~ 05:50:29 UTC
Fetching request 9 of 10 (2005-11-17 to 2005-12-26) ~ 05:50:41 UTC
Fetching request 10 of 10 (2005-12-27 to 2005-12-31) ~ 05:50:54 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2006-01-01 to 2006-02-09) ~ 05:51:05 UTC
Fetching request 2 of 10 (2006-02-10 to 2006-03-21) ~ 05:51:05 UTC
Fetching request 3 of 10 (2006-03-22 to 2006-04-30) ~ 05:51:05 UTC
Fetching request 4 of 10 (2006-05-01 to 2006-06-09) ~ 05:51:10 UTC
Fetching request 5 of 10 (2006-06-10 to 2006-07-19) ~ 05:51:21 UTC
Fetching request 6 of 10 (2006-07-20 to 2006-08-28) ~ 05:51:34 UTC
Fetching request 7 of 10 (2006-08-29 to 2006-10-07) ~ 05:51:48 UTC
Fetching request 8 of 10 (2006-10-08 to 2006-11-16) ~ 05:52:03 UTC
Fetching request 9 of 10 (2006-11-17 to 2006-12-26) ~ 05:52:17 UTC
Fetching request 10 of 10 (2006-12-27 to 2006-12-31) ~ 05:52:35 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2007-01-01 to 2007-02-09) ~ 05:52:45 UTC
Fetching request 2 of 10 (2007-02-10 to 2007-03-21) ~ 05:52:45 UTC
Fetching request 3 of 10 (2007-03-22 to 2007-04-30) ~ 05:52:45 UTC
Fetching request 4 of 10 (2007-05-01 to 2007-06-09) ~ 05:52:45 UTC
Fetching request 5 of 10 (2007-06-10 to 2007-07-19) ~ 05:52:46 UTC
Fetching request 6 of 10 (2007-07-20 to 2007-08-28) ~ 05:52:46 UTC
Fetching request 7 of 10 (2007-08-29 to 2007-10-07) ~ 05:52:55 UTC
Fetching request 8 of 10 (2007-10-08 to 2007-11-16) ~ 05:53:15 UTC
Fetching request 9 of 10 (2007-11-17 to 2007-12-26) ~ 05:53:30 UTC
Fetching request 10 of 10 (2007-12-27 to 2007-12-31) ~ 05:53:40 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2008-01-01 to 2008-02-09) ~ 05:53:51 UTC
Fetching request 2 of 10 (2008-02-10 to 2008-03-20) ~ 05:53:51 UTC
Fetching request 3 of 10 (2008-03-21 to 2008-04-29) ~ 05:53:51 UTC
Fetching request 4 of 10 (2008-04-30 to 2008-06-08) ~ 05:53:51 UTC
Fetching request 5 of 10 (2008-06-09 to 2008-07-18) ~ 05:53:52 UTC
Fetching request 6 of 10 (2008-07-19 to 2008-08-27) ~ 05:54:04 UTC
Fetching request 7 of 10 (2008-08-28 to 2008-10-06) ~ 05:54:20 UTC
Fetching request 8 of 10 (2008-10-07 to 2008-11-15) ~ 05:54:33 UTC
Fetching request 9 of 10 (2008-11-16 to 2008-12-25) ~ 05:54:51 UTC
Fetching request 10 of 10 (2008-12-26 to 2008-12-31) ~ 05:55:11 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2009-01-01 to 2009-02-09) ~ 05:55:22 UTC
Fetching request 2 of 10 (2009-02-10 to 2009-03-21) ~ 05:55:23 UTC
Fetching request 3 of 10 (2009-03-22 to 2009-04-30) ~ 05:55:23 UTC
Fetching request 4 of 10 (2009-05-01 to 2009-06-09) ~ 05:55:23 UTC
Fetching request 5 of 10 (2009-06-10 to 2009-07-19) ~ 05:55:23 UTC
Fetching request 6 of 10 (2009-07-20 to 2009-08-28) ~ 05:55:34 UTC
Fetching request 7 of 10 (2009-08-29 to 2009-10-07) ~ 05:55:50 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2009_nc/70afe1812a1a937acfb0d6a1acdcde0d.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2010-01-01 to 2010-02-09) ~ 05:55:57 UTC
Fetching request 2 of 10 (2010-02-10 to 2010-03-21) ~ 05:56:19 UTC
Fetching request 3 of 10 (2010-03-22 to 2010-04-30) ~ 05:56:33 UTC
Fetching request 4 of 10 (2010-05-01 to 2010-06-09) ~ 05:56:46 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2010_nc/8a67cc0f83c9d5cac7ccd72dac76e6b3.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2010_nc/8a67cc0f83c9d5cac7ccd72dac76e6b3.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2010_nc/8a67cc0f83c9d5cac7ccd72dac76e6b3.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 10 (2010-06-10 to 2010-07-19) ~ 05:56:57 UTC
Fetching request 6 of 10 (2010-07-20 to 2010-08-28) ~ 05:57:06 UTC
Fetching request 7 of 10 (2010-08-29 to 2010-10-07) ~ 05:57:24 UTC
Fetching request 8 of 10 (2010-10-08 to 2010-11-16) ~ 05:57:41 UTC
Fetching request 9 of 10 (2010-11-17 to 2010-12-26) ~ 05:57:59 UTC
Fetching request 10 of 10 (2010-12-27 to 2010-12-31) ~ 05:58:12 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2011-01-01 to 2011-02-09) ~ 05:58:24 UTC
Fetching request 2 of 10 (2011-02-10 to 2011-03-21) ~ 05:58:25 UTC
Fetching request 3 of 10 (2011-03-22 to 2011-04-30) ~ 05:58:25 UTC
Fetching request 4 of 10 (2011-05-01 to 2011-06-09) ~ 05:58:25 UTC
Fetching request 5 of 10 (2011-06-10 to 2011-07-19) ~ 05:58:25 UTC
Fetching request 6 of 10 (2011-07-20 to 2011-08-28) ~ 05:58:35 UTC
Fetching request 7 of 10 (2011-08-29 to 2011-10-07) ~ 05:58:48 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2011_nc/48474b60590c4e7bd7c8ec1128b62e34.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2012-01-01 to 2012-02-09) ~ 05:58:56 UTC
Fetching request 2 of 10 (2012-02-10 to 2012-03-20) ~ 05:59:10 UTC
Fetching request 3 of 10 (2012-03-21 to 2012-04-29) ~ 05:59:23 UTC
Fetching request 4 of 10 (2012-04-30 to 2012-06-08) ~ 05:59:33 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2012_nc/a1425d435e0fd8269326c42f37996897.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2012_nc/a1425d435e0fd8269326c42f37996897.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2012_nc/a1425d435e0fd8269326c42f37996897.nc (return_on_error= FALSE )
RETRYing...
Fetching request 5 of 10 (2012-06-09 to 2012-07-18) ~ 05:59:43 UTC
Fetching request 6 of 10 (2012-07-19 to 2012-08-27) ~ 05:59:51 UTC
Fetching request 7 of 10 (2012-08-28 to 2012-10-06) ~ 06:00:02 UTC
Fetching request 8 of 10 (2012-10-07 to 2012-11-15) ~ 06:00:15 UTC
Fetching request 9 of 10 (2012-11-16 to 2012-12-25) ~ 06:00:34 UTC
Fetching request 10 of 10 (2012-12-26 to 2012-12-31) ~ 06:00:46 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2013-01-01 to 2013-02-09) ~ 06:00:57 UTC
Fetching request 2 of 10 (2013-02-10 to 2013-03-21) ~ 06:00:58 UTC
Fetching request 3 of 10 (2013-03-22 to 2013-04-30) ~ 06:00:58 UTC
Fetching request 4 of 10 (2013-05-01 to 2013-06-09) ~ 06:00:58 UTC
Fetching request 5 of 10 (2013-06-10 to 2013-07-19) ~ 06:00:58 UTC
Fetching request 6 of 10 (2013-07-20 to 2013-08-28) ~ 06:01:08 UTC
Fetching request 7 of 10 (2013-08-29 to 2013-10-07) ~ 06:01:18 UTC
Fetching request 8 of 10 (2013-10-08 to 2013-11-16) ~ 06:01:32 UTC
Fetching request 9 of 10 (2013-11-17 to 2013-12-26) ~ 06:01:44 UTC
Fetching request 10 of 10 (2013-12-27 to 2013-12-31) ~ 06:01:56 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2014-01-01 to 2014-02-09) ~ 06:02:07 UTC
Fetching request 2 of 10 (2014-02-10 to 2014-03-21) ~ 06:02:07 UTC
Fetching request 3 of 10 (2014-03-22 to 2014-04-30) ~ 06:02:07 UTC
Fetching request 4 of 10 (2014-05-01 to 2014-06-09) ~ 06:02:07 UTC
Fetching request 5 of 10 (2014-06-10 to 2014-07-19) ~ 06:02:08 UTC
Fetching request 6 of 10 (2014-07-20 to 2014-08-28) ~ 06:02:10 UTC
Fetching request 7 of 10 (2014-08-29 to 2014-10-07) ~ 06:02:25 UTC
Fetching request 8 of 10 (2014-10-08 to 2014-11-16) ~ 06:02:37 UTC
Fetching request 9 of 10 (2014-11-17 to 2014-12-26) ~ 06:02:47 UTC
Fetching request 10 of 10 (2014-12-27 to 2014-12-31) ~ 06:02:56 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2015-01-01 to 2015-02-09) ~ 06:03:08 UTC
Fetching request 2 of 10 (2015-02-10 to 2015-03-21) ~ 06:03:09 UTC
Fetching request 3 of 10 (2015-03-22 to 2015-04-30) ~ 06:03:09 UTC
Fetching request 4 of 10 (2015-05-01 to 2015-06-09) ~ 06:03:09 UTC
Fetching request 5 of 10 (2015-06-10 to 2015-07-19) ~ 06:03:09 UTC
Fetching request 6 of 10 (2015-07-20 to 2015-08-28) ~ 06:03:13 UTC
Fetching request 7 of 10 (2015-08-29 to 2015-10-07) ~ 06:03:23 UTC
Fetching request 8 of 10 (2015-10-08 to 2015-11-16) ~ 06:03:38 UTC
Fetching request 9 of 10 (2015-11-17 to 2015-12-26) ~ 06:03:53 UTC
Fetching request 10 of 10 (2015-12-27 to 2015-12-31) ~ 06:04:10 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2016-01-01 to 2016-02-09) ~ 06:04:22 UTC
Fetching request 2 of 10 (2016-02-10 to 2016-03-20) ~ 06:04:22 UTC
Fetching request 3 of 10 (2016-03-21 to 2016-04-29) ~ 06:04:22 UTC
Fetching request 4 of 10 (2016-04-30 to 2016-06-08) ~ 06:04:23 UTC
Fetching request 5 of 10 (2016-06-09 to 2016-07-18) ~ 06:04:29 UTC
Fetching request 6 of 10 (2016-07-19 to 2016-08-27) ~ 06:04:45 UTC
Fetching request 7 of 10 (2016-08-28 to 2016-10-06) ~ 06:04:59 UTC
Fetching request 8 of 10 (2016-10-07 to 2016-11-15) ~ 06:05:15 UTC
Fetching request 9 of 10 (2016-11-16 to 2016-12-25) ~ 06:05:37 UTC
Fetching request 10 of 10 (2016-12-26 to 2016-12-31) ~ 06:06:04 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2017-01-01 to 2017-02-09) ~ 06:06:16 UTC
Fetching request 2 of 10 (2017-02-10 to 2017-03-21) ~ 06:06:16 UTC
Fetching request 3 of 10 (2017-03-22 to 2017-04-30) ~ 06:06:16 UTC
Fetching request 4 of 10 (2017-05-01 to 2017-06-09) ~ 06:06:17 UTC
Fetching request 5 of 10 (2017-06-10 to 2017-07-19) ~ 06:06:17 UTC
Fetching request 6 of 10 (2017-07-20 to 2017-08-28) ~ 06:06:17 UTC
Fetching request 7 of 10 (2017-08-29 to 2017-10-07) ~ 06:06:23 UTC
Fetching request 8 of 10 (2017-10-08 to 2017-11-16) ~ 06:06:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2017_nc/db9e3467de3cf1191b36d8610d40dde1.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2018-01-01 to 2018-02-09) ~ 06:06:43 UTC
Fetching request 2 of 10 (2018-02-10 to 2018-03-21) ~ 06:07:05 UTC
Fetching request 3 of 10 (2018-03-22 to 2018-04-30) ~ 06:07:20 UTC
Fetching request 4 of 10 (2018-05-01 to 2018-06-09) ~ 06:07:35 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2018_nc/7368bb463105b4d2bcbf0df0a5796a55.nc (return_on_error= FALSE )
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2019-01-01 to 2019-02-09) ~ 06:07:43 UTC
Fetching request 2 of 10 (2019-02-10 to 2019-03-21) ~ 06:07:56 UTC
Fetching request 3 of 10 (2019-03-22 to 2019-04-30) ~ 06:08:10 UTC
Fetching request 4 of 10 (2019-05-01 to 2019-06-09) ~ 06:08:25 UTC
Fetching request 5 of 10 (2019-06-10 to 2019-07-19) ~ 06:08:43 UTC
Fetching request 6 of 10 (2019-07-20 to 2019-08-28) ~ 06:08:55 UTC
Fetching request 7 of 10 (2019-08-29 to 2019-10-07) ~ 06:09:11 UTC
Fetching request 8 of 10 (2019-10-08 to 2019-11-16) ~ 06:09:22 UTC
Fetching request 9 of 10 (2019-11-17 to 2019-12-26) ~ 06:09:39 UTC
Fetching request 10 of 10 (2019-12-27 to 2019-12-31) ~ 06:09:54 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2020-01-01 to 2020-02-09) ~ 06:10:05 UTC
Fetching request 2 of 10 (2020-02-10 to 2020-03-20) ~ 06:10:06 UTC
Fetching request 3 of 10 (2020-03-21 to 2020-04-29) ~ 06:10:06 UTC
Fetching request 4 of 10 (2020-04-30 to 2020-06-08) ~ 06:10:13 UTC
Fetching request 5 of 10 (2020-06-09 to 2020-07-18) ~ 06:10:35 UTC
Fetching request 6 of 10 (2020-07-19 to 2020-08-27) ~ 06:10:56 UTC
Fetching request 7 of 10 (2020-08-28 to 2020-10-06) ~ 06:11:12 UTC
Fetching request 8 of 10 (2020-10-07 to 2020-11-15) ~ 06:11:28 UTC
Fetching request 9 of 10 (2020-11-16 to 2020-12-25) ~ 06:11:45 UTC
Fetching request 10 of 10 (2020-12-26 to 2020-12-31) ~ 06:12:01 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2021-01-01 to 2021-02-09) ~ 06:12:12 UTC
Fetching request 2 of 10 (2021-02-10 to 2021-03-21) ~ 06:12:12 UTC
Fetching request 3 of 10 (2021-03-22 to 2021-04-30) ~ 06:12:12 UTC
Fetching request 4 of 10 (2021-05-01 to 2021-06-09) ~ 06:12:13 UTC
Fetching request 5 of 10 (2021-06-10 to 2021-07-19) ~ 06:12:13 UTC
Fetching request 6 of 10 (2021-07-20 to 2021-08-28) ~ 06:12:13 UTC
Fetching request 7 of 10 (2021-08-29 to 2021-10-07) ~ 06:12:13 UTC
Fetching request 8 of 10 (2021-10-08 to 2021-11-16) ~ 06:12:16 UTC
Fetching request 9 of 10 (2021-11-17 to 2021-12-26) ~ 06:12:37 UTC
Fetching request 10 of 10 (2021-12-27 to 2021-12-31) ~ 06:12:49 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2022-01-01 to 2022-02-09) ~ 06:12:59 UTC
Fetching request 2 of 10 (2022-02-10 to 2022-03-21) ~ 06:12:59 UTC
Fetching request 3 of 10 (2022-03-22 to 2022-04-30) ~ 06:13:00 UTC
Fetching request 4 of 10 (2022-05-01 to 2022-06-09) ~ 06:13:02 UTC
Fetching request 5 of 10 (2022-06-10 to 2022-07-19) ~ 06:13:13 UTC
Fetching request 6 of 10 (2022-07-20 to 2022-08-28) ~ 06:13:27 UTC
Fetching request 7 of 10 (2022-08-29 to 2022-10-07) ~ 06:13:39 UTC
Fetching request 8 of 10 (2022-10-08 to 2022-11-16) ~ 06:13:52 UTC
Fetching request 9 of 10 (2022-11-17 to 2022-12-26) ~ 06:14:06 UTC
Fetching request 10 of 10 (2022-12-27 to 2022-12-31) ~ 06:14:19 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2023-01-01 to 2023-02-09) ~ 06:14:29 UTC
Fetching request 2 of 10 (2023-02-10 to 2023-03-21) ~ 06:14:29 UTC
Fetching request 3 of 10 (2023-03-22 to 2023-04-30) ~ 06:14:30 UTC
Fetching request 4 of 10 (2023-05-01 to 2023-06-09) ~ 06:14:30 UTC
Fetching request 5 of 10 (2023-06-10 to 2023-07-19) ~ 06:14:30 UTC
Fetching request 6 of 10 (2023-07-20 to 2023-08-28) ~ 06:14:30 UTC
Fetching request 7 of 10 (2023-08-29 to 2023-10-07) ~ 06:14:30 UTC
Fetching request 8 of 10 (2023-10-08 to 2023-11-16) ~ 06:14:39 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2023_nc/5521fc37199804fb3836d4dff8fe6058.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2023_nc/5521fc37199804fb3836d4dff8fe6058.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2023_nc/5521fc37199804fb3836d4dff8fe6058.nc (return_on_error= FALSE )
RETRYing...
Fetching request 9 of 10 (2023-11-17 to 2023-12-26) ~ 06:14:52 UTC
Fetching request 10 of 10 (2023-12-27 to 2023-12-31) ~ 06:15:00 UTC
Downloading 10 requests, up to 40 time slices each
Fetching request 1 of 10 (2024-01-01 to 2024-02-09) ~ 06:15:11 UTC
Fetching request 2 of 10 (2024-02-10 to 2024-03-20) ~ 06:15:18 UTC
Fetching request 3 of 10 (2024-03-21 to 2024-04-29) ~ 06:15:36 UTC
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )
ERROR in calling ncdf4::nc_open:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )ERROR in calling file:
Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )
RETRYing...
Error in R_nc4_open: NetCDF: Unknown file format
Error in ncdf4::nc_open(file) : 
  Error in nc_open trying to open file /share/data/noaa-onms/climate-dashboard-app/erddap_sst/TBNMS/2024_nc/259848b0a9d545877021fe67b1e2494a.nc (return_on_error= FALSE )
Downloading 5 requests, up to 40 time slices each
Fetching request 1 of 5 (2025-01-01 to 2025-02-09) ~ 06:15:44 UTC
Fetching request 2 of 5 (2025-02-10 to 2025-03-21) ~ 06:16:02 UTC
Fetching request 3 of 5 (2025-03-22 to 2025-04-30) ~ 06:16:15 UTC
Fetching request 4 of 5 (2025-05-01 to 2025-06-09) ~ 06:16:29 UTC
Fetching request 5 of 5 (2025-06-10 to 2025-06-11) ~ 06:16:46 UTC
Warning: There were 3 warnings in `mutate()`.
The first warning was:
ℹ In argument: `error = pmap_chr(list(i, nms, time_min, time_max), fxn)`.
Caused by warning in `new_CppObject_xp()`:
! GDAL Error 4: `/share/data/noaa-onms/climate-dashboard-app/erddap_sst/MNMS/2003.tif' not recognized as a supported file format.
ℹ Run `dplyr::last_dplyr_warnings()` to see the 2 remaining warnings.

4.1 Successes

Code
res |> 
  mutate(
    success = is.na(error)) |> 
  group_by(success) |> 
  summarize(
    n = n()) |> 
  datatable()

4.2 Errors (if any)

Code
# rast(glue("{dir_out}/{nms}/{yr}.tif")) |> names()

res |> 
  filter(!is.na(error)) |> 
  group_by(nms) |> 
  summarize(
    n_years = n(),
    errors  = unique(error) |> paste(collapse = "\n\n----\n\n")) |> 
  datatable()
Code
devtools::session_info()
─ Session info ───────────────────────────────────────────────────────────────
 setting  value
 version  R version 4.4.2 (2024-10-31)
 os       Ubuntu 24.04.1 LTS
 system   x86_64, linux-gnu
 ui       X11
 language (EN)
 collate  en_US.UTF-8
 ctype    en_US.UTF-8
 tz       Etc/UTC
 date     2025-06-13
 pandoc   3.5 @ /usr/bin/ (via rmarkdown)

─ Packages ───────────────────────────────────────────────────────────────────
 package           * version date (UTC) lib source
 base64enc           0.1-3   2015-07-28 [1] RSPM (R 4.4.0)
 bit                 4.6.0   2025-03-06 [1] RSPM (R 4.4.0)
 bit64               4.6.0-1 2025-01-16 [1] RSPM (R 4.4.0)
 brew                1.0-10  2023-12-16 [1] RSPM (R 4.4.0)
 bslib               0.9.0   2025-01-30 [1] RSPM (R 4.4.0)
 cachem              1.1.0   2024-05-16 [1] RSPM (R 4.4.0)
 class               7.3-22  2023-05-03 [2] CRAN (R 4.4.2)
 classInt            0.4-11  2025-01-08 [1] RSPM (R 4.4.0)
 cli                 3.6.5   2025-04-23 [1] RSPM (R 4.4.0)
 codetools           0.2-20  2024-03-31 [2] CRAN (R 4.4.2)
 colorspace          2.1-1   2024-07-26 [1] RSPM (R 4.4.0)
 crayon              1.5.3   2024-06-20 [1] RSPM (R 4.4.0)
 crosstalk           1.2.1   2023-11-23 [1] RSPM (R 4.4.0)
 crul                1.5.0   2024-07-19 [1] RSPM (R 4.4.0)
 curl                6.2.2   2025-03-24 [1] RSPM (R 4.4.0)
 data.table          1.17.2  2025-05-12 [1] RSPM (R 4.4.0)
 DBI                 1.2.3   2024-06-02 [1] RSPM (R 4.4.0)
 deldir              2.0-4   2024-02-28 [1] RSPM (R 4.4.0)
 devtools            2.4.5   2022-10-11 [1] RSPM (R 4.4.0)
 dichromat           2.0-0.1 2022-05-02 [1] RSPM (R 4.4.0)
 digest              0.6.37  2024-08-19 [1] RSPM (R 4.4.0)
 dplyr             * 1.1.4   2023-11-17 [1] RSPM (R 4.4.0)
 DT                * 0.33    2024-04-04 [1] RSPM (R 4.4.0)
 dygraphs            1.1.1.6 2018-07-11 [1] RSPM (R 4.4.0)
 e1071               1.7-16  2024-09-16 [1] RSPM (R 4.4.0)
 ellipsis            0.3.2   2021-04-29 [1] RSPM (R 4.4.0)
 evaluate            1.0.3   2025-01-10 [1] RSPM (R 4.4.0)
 extractr          * 0.1.7   2025-05-19 [1] local (/share/github/marinebon/extractr)
 farver              2.1.2   2024-05-13 [1] RSPM (R 4.4.0)
 fastmap             1.2.0   2024-05-15 [1] RSPM (R 4.4.0)
 fs                * 1.6.6   2025-04-12 [1] RSPM (R 4.4.0)
 generics            0.1.4   2025-05-09 [1] RSPM (R 4.4.0)
 glue              * 1.8.0   2024-09-30 [1] RSPM (R 4.4.0)
 here              * 1.0.1   2020-12-13 [1] RSPM (R 4.4.0)
 hms                 1.1.3   2023-03-21 [1] RSPM (R 4.4.0)
 hoardr              0.5.5   2025-01-18 [1] RSPM (R 4.4.0)
 htmltools           0.5.8.1 2024-04-04 [1] RSPM (R 4.4.0)
 htmlwidgets         1.6.4   2023-12-06 [1] RSPM (R 4.4.0)
 httpcode            0.3.0   2020-04-10 [1] RSPM (R 4.4.0)
 httpuv              1.6.16  2025-04-16 [1] RSPM (R 4.4.0)
 jquerylib           0.1.4   2021-04-26 [1] RSPM (R 4.4.0)
 jsonlite            2.0.0   2025-03-27 [1] RSPM (R 4.4.0)
 KernSmooth          2.23-24 2024-05-17 [2] CRAN (R 4.4.2)
 knitr               1.50    2025-03-16 [1] RSPM (R 4.4.0)
 later               1.4.2   2025-04-08 [1] RSPM (R 4.4.0)
 lattice             0.22-6  2024-03-20 [2] CRAN (R 4.4.2)
 leafem              0.2.4   2025-05-01 [1] RSPM (R 4.4.0)
 leaflet             2.2.2   2024-03-26 [1] RSPM (R 4.4.0)
 leaflet.providers   2.0.0   2023-10-17 [1] RSPM (R 4.4.0)
 leafpop             0.1.0   2021-05-22 [1] RSPM (R 4.4.0)
 librarian           1.8.1   2021-07-12 [1] RSPM (R 4.4.0)
 lifecycle           1.0.4   2023-11-07 [1] RSPM (R 4.4.0)
 logger            * 0.4.0   2024-10-22 [1] RSPM (R 4.4.0)
 lubridate         * 1.9.4   2024-12-08 [1] RSPM (R 4.4.0)
 magrittr            2.0.3   2022-03-30 [1] RSPM (R 4.4.0)
 mapview           * 2.11.2  2023-10-13 [1] RSPM (R 4.4.0)
 Matrix              1.7-1   2024-10-18 [2] CRAN (R 4.4.2)
 memoise             2.0.1   2021-11-26 [1] RSPM (R 4.4.0)
 mime                0.13    2025-03-17 [1] RSPM (R 4.4.0)
 miniUI              0.1.1.1 2018-05-18 [1] RSPM (R 4.4.0)
 ncdf4               1.24    2025-03-25 [1] RSPM (R 4.4.0)
 pillar              1.10.2  2025-04-05 [1] RSPM (R 4.4.0)
 pkgbuild            1.4.5   2024-10-28 [1] RSPM (R 4.4.0)
 pkgconfig           2.0.3   2019-09-22 [1] RSPM (R 4.4.0)
 pkgload             1.4.0   2024-06-28 [1] RSPM (R 4.4.0)
 png                 0.1-8   2022-11-29 [1] RSPM (R 4.4.0)
 polyclip            1.10-7  2024-07-23 [1] RSPM (R 4.4.0)
 profvis             0.4.0   2024-09-20 [1] RSPM (R 4.4.0)
 promises            1.3.2   2024-11-28 [1] RSPM (R 4.4.0)
 proxy               0.4-27  2022-06-09 [1] RSPM (R 4.4.0)
 purrr             * 1.0.4   2025-02-05 [1] RSPM (R 4.4.0)
 R.methodsS3         1.8.2   2022-06-13 [1] RSPM (R 4.4.0)
 R.oo                1.27.1  2025-05-02 [1] RSPM (R 4.4.0)
 R.utils             2.13.0  2025-02-24 [1] RSPM (R 4.4.0)
 R6                  2.6.1   2025-02-15 [1] RSPM (R 4.4.0)
 rappdirs            0.3.3   2021-01-31 [1] RSPM (R 4.4.0)
 raster              3.6-32  2025-03-28 [1] RSPM (R 4.4.0)
 RColorBrewer      * 1.1-3   2022-04-03 [1] RSPM (R 4.4.0)
 Rcpp                1.0.14  2025-01-12 [1] RSPM (R 4.4.0)
 readr             * 2.1.5   2024-01-10 [1] RSPM (R 4.4.0)
 remotes             2.5.0   2024-03-17 [1] RSPM (R 4.4.0)
 rerddap             1.2.1   2025-03-19 [1] RSPM (R 4.4.0)
 rlang               1.1.6   2025-04-11 [1] RSPM (R 4.4.0)
 rmarkdown           2.29    2024-11-04 [1] RSPM (R 4.4.0)
 rprojroot           2.0.4   2023-11-05 [1] RSPM (R 4.4.0)
 s2                  1.1.9   2025-05-23 [1] RSPM (R 4.4.0)
 sass                0.4.10  2025-04-11 [1] RSPM (R 4.4.0)
 satellite           1.0.5   2024-02-10 [1] RSPM (R 4.4.0)
 scales              1.4.0   2025-04-24 [1] RSPM (R 4.4.0)
 sessioninfo         1.2.2   2021-12-06 [1] RSPM (R 4.4.0)
 sf                * 1.0-21  2025-05-15 [1] RSPM (R 4.4.2)
 shiny               1.10.0  2024-12-14 [1] RSPM (R 4.4.0)
 sp                  2.2-0   2025-02-01 [1] RSPM (R 4.4.0)
 spatstat.data       3.1-6   2025-03-17 [1] RSPM (R 4.4.0)
 spatstat.geom       3.3-6   2025-03-18 [1] RSPM (R 4.4.0)
 spatstat.univar     3.1-3   2025-05-08 [1] RSPM (R 4.4.0)
 spatstat.utils      3.1-4   2025-05-15 [1] RSPM (R 4.4.0)
 stringi             1.8.7   2025-03-27 [1] RSPM (R 4.4.0)
 stringr           * 1.5.1   2023-11-14 [1] RSPM (R 4.4.0)
 svglite             2.2.1   2025-05-12 [1] RSPM (R 4.4.0)
 systemfonts         1.2.3   2025-04-30 [1] RSPM (R 4.4.0)
 tabularaster        0.7.2   2023-11-01 [1] RSPM (R 4.4.0)
 terra             * 1.8-54  2025-06-01 [1] RSPM (R 4.4.0)
 textshaping         1.0.1   2025-05-01 [1] RSPM (R 4.4.0)
 tibble            * 3.3.0   2025-06-08 [1] RSPM (R 4.4.0)
 tidyr             * 1.3.1   2024-01-24 [1] RSPM (R 4.4.0)
 tidyselect          1.2.1   2024-03-11 [1] RSPM (R 4.4.0)
 timechange          0.3.0   2024-01-18 [1] RSPM (R 4.4.0)
 triebeard           0.4.1   2023-03-04 [1] RSPM (R 4.4.0)
 tzdb                0.5.0   2025-03-15 [1] RSPM (R 4.4.0)
 units             * 0.8-7   2025-03-11 [1] RSPM (R 4.4.0)
 urlchecker          1.0.1   2021-11-30 [1] RSPM (R 4.4.0)
 urltools            1.7.3   2019-04-14 [1] RSPM (R 4.4.0)
 usethis             3.1.0   2024-11-26 [1] RSPM (R 4.4.0)
 uuid                1.2-1   2024-07-29 [1] RSPM (R 4.4.0)
 vctrs               0.6.5   2023-12-01 [1] RSPM (R 4.4.0)
 vroom               1.6.5   2023-12-05 [1] RSPM (R 4.4.0)
 withr               3.0.2   2024-10-28 [1] RSPM (R 4.4.0)
 wk                  0.9.4   2024-10-11 [1] RSPM (R 4.4.0)
 xfun                0.52    2025-04-02 [1] RSPM (R 4.4.0)
 xml2                1.3.8   2025-03-14 [1] RSPM (R 4.4.0)
 xtable              1.8-4   2019-04-21 [1] RSPM (R 4.4.0)
 xts                 0.14.1  2024-10-15 [1] RSPM (R 4.4.0)
 yaml              * 2.3.10  2024-07-26 [1] RSPM (R 4.4.0)
 zoo                 1.8-14  2025-04-10 [1] RSPM (R 4.4.0)

 [1] /usr/local/lib/R/site-library
 [2] /usr/local/lib/R/library

──────────────────────────────────────────────────────────────────────────────